利用者:Shin-改/monobook.js
表示
お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。
多くの Windows や Linux のブラウザ
- Ctrl を押しながら F5 を押す。
Mac における Safari
Mac における Chrome や Firefox
- ⌘ Cmd と ⇧ Shift を押しながら R を押す。
詳細についてはWikipedia:キャッシュを消すをご覧ください。
function getSelectIE(){
if(navigator.appName == "Microsoft Internet Explorer"){
if( (event.keyCode == 84) && (event.shiftKey == true) && (event.ctrlKey == true) ){
xx = document.selection.createRange();
window.open("http://ja.wiktionary.org/wiki/" + xx.text , "new" , "");
}
if( (event.keyCode == 80) && (event.shiftKey == true) && (event.ctrlKey == true) ){
xx = document.selection.createRange();
window.open("http://ja-two.iwiki.icu/wiki/" + xx.text , "new" , "");
}
}
}
function getSelectNN(e){
if(navigator.appName == "Netscape"){
if( (e.which == 84) && (e.shiftKey == true) && (e.ctrlKey == true) ){
xx = document.getSelection();
window.open("http://ja.wiktionary.org/wiki/" + xx , "new" , "");
}
if( (e.which == 80) && (e.shiftKey == true) && (e.ctrlKey == true) ){
xx = document.getSelection();
window.open("http://ja-two.iwiki.icu/wiki/" + xx , "new" , "");
}
}
}
if(navigator.appName == "Microsoft Internet Explorer"){
document.onkeydown = getSelectIE;
}
if(navigator.appName == "Netscape"){
document.onkeydown = getSelectNN;
}