加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
patchgetClosedWindowCount.uc.js 748 Bytes
一键复制 编辑 原始数据 按行查看 历史
alice0775 提交于 2011-06-11 03:05 . first commit
// ==UserScript==
// @name patchgetClosedWindowCount.uc.js
// @namespace http://space.geocities.yahoo.co.jp/gl/alice0775
// @description getClosedWindowCount
// @include main
// @compatibility Firefox 3.0 3.5 3.6
// @author Alice0775
// @version LastMod 2009/06/01 14:30
// @Note
// ==/UserScript==
(function(){
if (HistoryMenu && typeof HistoryMenu.toggleRecentlyClosedWindows != 'undefined') {
var func = HistoryMenu.toggleRecentlyClosedWindows.toSource();
func = func.replace("if (this._ss.getClosedWindowCount() == 0)","if (typeof this._ss.getClosedWindowCount != 'function' || this._ss.getClosedWindowCount() == 0)");
eval('HistoryMenu.toggleRecentlyClosedWindows = ' + func);
}
})();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化