查看: 1330|回复: 0
收起左侧

[已解决] 火狐92.0标签页右键屏蔽无效--历史从新标签页打开也无效

[复制链接]
一颗心一个名
发表于 2021-9-12 17:45:53 | 显示全部楼层 |阅读模式
本帖最后由 一颗心一个名 于 2021-9-14 19:14 编辑

[backcolor=rgba(211, 211, 211, 0.86)][size=1.2em]Text.



解决方案https://bbs.kafan.cn/thread-2104467-1-1.html





找到了关键词  


设定   无效     特意求助大家  谢谢

/*选择所有标签页*/
#context_SelectAllTabs {
display:none!important;
}


/*为标签页添加书签*/
#context_BookmarkTab {
display:none!important;
}




历史从新标签页打开也无效


// ==UserScript==
// @name           newtabfromhistory.uc.js
// @namespace      https://www.camp-firefox.de/foru ... ?p=1090093#p1090093
// @description    Links aus Chronik in neuem Tab ??ffnen
// @author         aborix
// @compatibility  62+
// @version        0.0.2
// ==/UserScript==

(function() {

  if (location != 'chrome://browser/content/browser.xul')
    return;

  eval('PlacesUIUtils.openNodeWithEvent = '  + PlacesUIUtils.openNodeWithEvent.toString()
    .replace(' && PlacesUtils.nodeIsBookmark(aNode)', '')
    .replace('getBrowserWindow(window)',
      '(window && window.document.documentElement.getAttribute("windowtype") == "navigator:browser") ? window : BrowserWindowTracker.getTopWindow()')
  );

  let onPopupshowing = function() {
    let historyMenu = document.getElementById('history-menu');
    if (!historyMenu._placesView) {
      new HistoryMenu(event);
      historyMenu._placesView._onCommand = function HM__onCommand(aEvent) {
        let placesNode = aEvent.target._placesNode;
        if (placesNode) {
          PlacesUIUtils.openNodeWithEvent(placesNode, aEvent);
        };
      };
    };
  };

  let historyPopup = document.getElementById('goPopup');
  historyPopup.setAttribute('onpopupshowing', '(' + onPopupshowing.toString() + ')()');

})();

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?快速注册

x
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

手机版|杀毒软件|软件论坛| 卡饭论坛

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2024-4-26 13:01 , Processed in 0.145257 second(s), 17 queries .

卡饭网所发布的一切软件、样本、工具、文章等仅限用于学习和研究,不得将上述内容用于商业或者其他非法用途,否则产生的一切后果自负,本站信息来自网络,版权争议问题与本站无关,您必须在下载后的24小时之内从您的电脑中彻底删除上述信息,如有问题请通过邮件与我们联系。

快速回复 客服 返回顶部 返回列表