Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

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 can I remove 'Open all in tabs' from my bookmarks?

  • 2 件の返信
  • 5 人がこの問題に困っています
  • 7 回表示
  • 最後の返信者: Gingerbread Man

more options

How can I remove 'Open all in tabs' from my bookmarks? It's very annoying when you click on it by error. I downgraded from 29 to 28 because of the various bookmark issues I was having. I never had this issue with previous version of FF, why did they have to mess with stuff that was working.

I love the new layout. Thanks

How can I remove 'Open all in tabs' from my bookmarks? It's very annoying when you click on it by error. I downgraded from 29 to 28 because of the various bookmark issues I was having. I never had this issue with previous version of FF, why did they have to mess with stuff that was working. I love the new layout. Thanks

選ばれた解決策

Add code to the userChrome.css file below the default @namespace line.


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

#placesContext_openContainer\:tabs,
#placesContext_openSeparator {
 display: none !important;
}

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

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
この回答をすべて読む 👍 2

すべての返信 (2)

more options

選ばれた解決策

Add code to the userChrome.css file below the default @namespace line.


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

#placesContext_openContainer\:tabs,
#placesContext_openSeparator {
 display: none !important;
}

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

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
more options

Firefox 28 contains security vulnerabilities. It's best to start a new thread (ask a new question) about the other issues you're having with Firefox 29 and resolve them.


  1. Install Stylish and restart Firefox when prompted.
  2. Open the Add-ons Manager (Ctrl+Shift+A).
  3. Click User Styles on the left.
  4. Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.

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

#BMB_bookmarksPopup .openintabs-menuitem,
#bookmarksMenuPopup .openintabs-menuitem {
  display: none !important;
}

If you don't want to install an add-on, you can use the userChrome.css file instead, but I don't recommend it.

この投稿は Gingerbread Man により に変更されました