Skip to content

Instantly share code, notes, and snippets.

@moroishi
moroishi / Bookmarklet
Last active April 2, 2019 22:52
選択されたテキストを英辞郎で検索するブックマークレット
javascript:var s = ''; if (window.navigator.appName == 'Microsoft Internet Explorer') {s = document.selection.createRange().text;} else {s = window.getSelection();} if (!s || s == '') {s = prompt('単語を入力してください。', '');} if (s) { window.open("http://eow.alc.co.jp/" + s); } void(0);