Dictionary Tooltip是个Firefox扩展,可以让你双击一个单词就在线去查词典,将结果显示出来(不是新开一页,而是在当前页内显示,可以过滤不相关的内容)。
将以下内容添加到(firefox profile)
/dictionarytip/dictionarytip_dictScript.js尾部即可。
--- >8 --------------------------------------------------------------
--- 8< --------------------------------------------------------------
dtip_arrDict[19]=
{
dictName : "www.iciba.com",
url : "",
subCatName : " *",
subCatValue : " *",
selectedText : "",
assignUrl : function(selectedText, prefLang)
{
this.url = " http://www.iciba.com/" + selectedText + "/";
this.selectedText = selectedText;
},
filterPage : function (ftDoc, prefLang, strNoResults)
{
try
{
var elemId = "dict_content";
var newDiv = "";
if (ftDoc.getElementById(elemId) != null)
{
newDiv = ftDoc.getElementById(elemId).cloneNode(true);
ftDoc.body.innerHTML = newDiv.innerHTML;
}
}
catch (ex)
{
alert(ex);
}
}
}
dtip_strDictText += ";www.iciba.com"
(2008-10-5 更新: 做了补充说明,并修订了一下脚本)