Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

How to remove the Open All In Tabs options in the Bookmarks menu

  • 3 件の返信
  • 2 人がこの問題に困っています
  • 164 回表示
  • 最後の返信者: cor-el

more options

Hello,

I have Firefox 17.0.1.

Is there a way to remove or disable the Open All in Tabs item in sub-menus of the Bookmarks menu? I have on occasion selected it by mistake, and lots of unwanted tabs appear like rabid politicians.

Thanks.

Jack
Hello, I have Firefox 17.0.1. Is there a way to remove or disable the Open All in Tabs item in sub-menus of the Bookmarks menu? I have on occasion selected it by mistake, and lots of unwanted tabs appear like rabid politicians. Thanks. :Jack

選ばれた解決策

You can set the browser.tabs.maxOpenBeforeWarn pref to 1 on the about:config page to get a warning in such a case (works as well with a middle-click on a folder).


You can add this code in the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


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

#PlacesToolbarItems .openintabs-menuitem,
#placesContext>menuitem[id="placesContext_openContainer:tabs"],
#placesContext>menuitem[id="placesContext_openContainer:tabs"]:not([hidden])+menuitem+#placesContext_openSeparator {visibility:collapse!important}
この回答をすべて読む 👍 2

すべての返信 (3)

more options

選ばれた解決策

You can set the browser.tabs.maxOpenBeforeWarn pref to 1 on the about:config page to get a warning in such a case (works as well with a middle-click on a folder).


You can add this code in the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


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

#PlacesToolbarItems .openintabs-menuitem,
#placesContext>menuitem[id="placesContext_openContainer:tabs"],
#placesContext>menuitem[id="placesContext_openContainer:tabs"]:not([hidden])+menuitem+#placesContext_openSeparator {visibility:collapse!important}
more options

Thanks - the warning works.

Cheers.

Jack
more options

You're welcome