加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
patchSmartKeyWord.uc.js 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
alice0775 提交于 2011-06-11 03:05 . first commit
// ==UserScript==
// @name patchSmartKeyWord.uc.js
// @namespace http://space.geocities.yahoo.co.jp/gl/alice0775
// @description SmartKeyWord において +をエンコードする
// @include main
// @compatibility Firefox 2.0 3.0
// @author Alice0775
// @version LastMod 2007/08/26 14:30
// @Note Bug 359809 - Bookmark Keyword searches are not encoded properly (though keyword.URL is)
// ==/UserScript==
(function(){
var func = getShortcutOrURI.toSource();
//Fx2
func = func.replace(/encodedText = escape\(convertFromUnicode\(charset, text\)\);/,"encodedText = escape(convertFromUnicode(charset, text)).replace(/\\+/g,'%2B');");
//Fx3
func = func.replace(/encodedParam = escape\(convertFromUnicode\(charset, param\)\);/,"encodedParam = escape(convertFromUnicode(charset, param)).replace(/\\+/g,'%2B');");
eval('getShortcutOrURI = ' + func);
})();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化