選択されたテキストを alc で引く Firefox 拡張
予想外に5分でできた。というか選択されたテキストを wikipedia で引くサンプル(http://stupidbob307.eshlook.com/jetpacks/wikipedia.html)があったので、その URL を変えただけなんですけどね。予想以上に便利だったので Opera でも使いたい。(自画自賛)
jetpack.future.import("selection"); jetpack.future.import("slideBar"); jetpack.slideBar.append({ icon: "http://www.alc.co.jp/favicon.ico", width: 350, html: '<style>scrollbar * {display: none !important;}</style><iframe class="frame" height="99%" width="100%" src="http://www.alc.co.jp/"></frame>', onReady: function(slide) { jetpack.selection.onSelection(function() { $(".frame", slide.contentDocument).attr("src", "http://eow.alc.co.jp/" + jetpack.selection.text + "/UTF-8/?ref=sa"); }); } });