Mozilla VPN is currently experiencing an outage. Our team is actively working to resolve the issue. Please check the status page for real-time updates. Thank you for your patience.

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Remove "Open All in Tabs" bookmark

  • 2 个回答
  • 0 人有此问题
  • 3 次查看
  • 最后回复者为 cor-el

more options

I want to remove the "Open All in Tabs" bookmark from my bookmarks folders, it's annoying and unnecessary (mouse scroll button is enough). Right clicking it opens the same menu as right clicking any folder, but in this case, the only option I want ("Delete Folder") is unavailable. I searched for a solution online, but the only thing I saw was something about editing codes and stuff, but I'd rather not mess with them. I couldn't find anything about it in the settings either, and there were no plugins, add-ons or extensions to fix this problem. If there's no way at all around it without having to mess with code, please do tell when I can expect to see an update that will bring a way to turn it off.

I want to remove the "Open All in Tabs" bookmark from my bookmarks folders, it's annoying and unnecessary (mouse scroll button is enough). Right clicking it opens the same menu as right clicking any folder, but in this case, the only option I want ("Delete Folder") is unavailable. I searched for a solution online, but the only thing I saw was something about editing codes and stuff, but I'd rather not mess with them. I couldn't find anything about it in the settings either, and there were no plugins, add-ons or extensions to fix this problem. If there's no way at all around it without having to mess with code, please do tell when I can expect to see an update that will bring a way to turn it off.
已附加屏幕截图

所有回复 (2)

more options

Hi Taylor, as far as I know, there isn't a built-in feature to hide that item. I am also not aware that anyone is working on adding such a feature. Do you think it would be popular?

Mozilla recently started up a new "Ideas" site at https://connect.mozilla.org/. I think if you have time, it would be a good idea to post there (under Ideas, not Discussions) to get into the current feedback stream.

more options

Note that "Open All in Tabs" isn't a bookmark, but is a normal menu item like "Open in New Tab" in the context menu. This "Open All in Tabs" item is only added when there are multiple bookmarks in a folder.

You can only hide such a menu item via CSS code in userChrome.css. Add CSS code to the userChrome.css file in the chrome folder in the Firefox profile folder.


.openintabs-menuitem { display:none!important; }

It is not that difficult to create userChrome.css if you have never used it.

The first step is to open the "Help -> Troubleshooting Information" page and find the button to access the profile folder with the random name (xxxxxxxx.default-release).

You can find the button to go to the profile folder under the "Application Basics" section as "Profile Folder -> Open Folder". If you click this button then you open the profile folder in the Windows File Explorer. You need to create a folder with the name chrome in the profile folder with the random name (name is all lowercase). In the chrome folder you need to create a plain text file with the name userChrome.css (name is case sensitive). In this userChrome.css text file you paste the text posted. On Mac you can use the TextEdit utility to create the userChrome.css file as a plain text file.

In Windows saving the file is usually the only time things get more complicated because Windows can silently add a .txt file extension and you end up with a file named userChrome.css.txt. To avoid this you need to make sure to select "All files" in the dialog to save the file in the text editor using "Save File as".

You need to close (Quit/Exit) and restart Firefox when you create or modify the userChrome.css file.

More info about userContent.css and userChrome.css in case you are not familiar: *https://www.userchrome.org/what-is-userchrome-css.html

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • about:config => toolkit.legacyUserProfileCustomizations.stylesheets = true

You can open the about:config page via the location/address bar. On the warning page, you can click "Accept the Risk and Continue"to open about:config.