加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
patchForBug1177639_revert_copy_menu.uc.js 639 Bytes
一键复制 编辑 原始数据 按行查看 历史
// ==UserScript==
// @name patchForBug1177639_revert_copy_menu.uc.js
// @namespace http://space.geocities.yahoo.co.jp/gl/alice0775
// @description Fixed Bug1177639 "Copy" context menu is missing on bookmarks
// @include main
// @compatibility Firefox 33+
// @author Alice0775
// @version 2015/06/26
// ==/UserScript==
Object.defineProperty(PlacesViewBase.prototype, 'selectedNode', {
get: function() {
if (this._contextMenuShown) {
let popup = document.popupNode;
return popup._placesNode || popup.parentNode._placesNode || null;
}
return null;
}
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化