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!

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

UserChrome.css Hide Bookmarks Toolbar Context Menus

  • 2 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par hijacks

more options

Does someone know how the css code is for remove all Bookmarks Toolbar context menus. I added two images where you can see which context menus. Sorry for asking this question but i've searched two days and found nothing about.

I use Firex 83

Thank you.

Does someone know how the css code is for remove all Bookmarks Toolbar context menus. I added two images where you can see which context menus. Sorry for asking this question but i've searched two days and found nothing about. I use Firex 83 Thank you.
Captures d’écran jointes

Solution choisie

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library).

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 { display: none !important; }

Lire cette réponse dans son contexte 👍 1

Toutes les réponses (2)

more options

Solution choisie

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library).

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 { display: none !important; }

more options

cor-el said

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library). 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 { display: none !important; }


Many thanks. That was exactly what i was looking for and didn't found after search for days.