加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
patchForBug610761RemoveSwitchToTabInURLBar.uc.js 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
// ==UserScript==
// @name patchForBug610761RemoveSwitchToTabInURLBar.uc.js
// @namespace http://space.geocities.yahoo.co.jp/gl/alice0775
// @charset UTF-8
// @description ロケーションバーにSwitch To Tabが残ってしまうのを修正
// @include main
// @compatibility Firefox 4.0 5.0 6.0 7.0
// @author Alice0775
// @version 2011/06/28 00:00
// ==/UserScript==
var removeSwitchToTabInURLBar = {
init: function() {
this.popup = document.getElementById("PopupAutoCompleteRichResult");
this.popup.addEventListener("popuphidden", this, false);
window.addEventListener("unload", this, false);
},
handleEvent: function(event) {
switch(event.type) {
case "popuphidden":
this.onpopuphidden();
break;
case "unload":
this.popup.removeEventListener("popuphidden", this, false);
window.removeEventListener("unload", this, false);
break;
}
},
onpopuphidden: function() {
if (gURLBar.getAttribute("actiontype") == "switchtab") {
setTimeout(function(self) {self.handleRevert();}, 250, this);
}
},
handleRevert: function() {
if (gURLBar.getAttribute("actiontype") == "switchtab") {
gURLBar.handleRevert();
}
}
}
removeSwitchToTabInURLBar.init();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化