在 Firefox userChrome.css 中,禁用菜单选项卡下“打开文件”的代码是什么?

在 Firefox userChrome.css 中,禁用菜单选项卡下“打开文件”的代码是什么?

我想禁用 Firefox 菜单选项卡中的打开文件选项。我已写过

menuitem[label=Open File]{
display:none;
}

但它不起作用。

答案1

使用

#menu_openFile { display: none !important }

userChrome.css。保留

@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

作为第一行。

外观

使用完全相同的过程来去除Email links ...

添加

#menu_sendLink { display: none !important }

删除该内容:

通过电子邮件链接...

对 userChrome.css 进行更改并重新启动浏览器后,我们看到已Email link ...被删除:

没有电子邮件链接...

相关内容