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 ».

En savoir plus

List all tabs and extension buttons in toolbar

more options

Firefox version 131 introduced a new list all tabs button to the toolbar which cannot be removed like the previous one by adjustment in about:config.

This works:

https://www.reddit.com/r/firefox/comments/1fu19hs/how_to_remove_the_list_all_tabs_button_introduced/

Trouble is I have already removed the extension button using this method:

https://www.reddit.com/r/FirefoxCSS/comments/11un3a4/firefox_111_how_to_completely_remove_the/?rdt=53720

The system will not accept another userchrome file in the Profile folder - trying to do this it will only accept a replacement.

Does anyone know how to get rid of BOTH of these annoying buttons?

Firefox version 131 introduced a new list all tabs button to the toolbar which cannot be removed like the previous one by adjustment in about:config. This works: https://www.reddit.com/r/firefox/comments/1fu19hs/how_to_remove_the_list_all_tabs_button_introduced/ Trouble is I have already removed the extension button using this method: https://www.reddit.com/r/FirefoxCSS/comments/11un3a4/firefox_111_how_to_completely_remove_the/?rdt=53720 The system will not accept another userchrome file in the Profile folder - trying to do this it will only accept a replacement. Does anyone know how to get rid of BOTH of these annoying buttons?

Solution choisie

You simply put all the required tweaks in a single userChrome file, ie:—

#alltabs-button {

  display: none !important; 

}

#unified-extensions-button {

  width: 3px;
  padding-inline: 0 !important

}

#unified-extensions-button > .toolbarbutton-icon {

   width: 0 !important;

}

Lire cette réponse dans son contexte 👍 0

Toutes les réponses (2)

more options

Cela vous a-t-il été utile ?

more options

Solution choisie

You simply put all the required tweaks in a single userChrome file, ie:—

#alltabs-button {

  display: none !important; 

}

#unified-extensions-button {

  width: 3px;
  padding-inline: 0 !important

}

#unified-extensions-button > .toolbarbutton-icon {

   width: 0 !important;

}

Cela vous a-t-il été utile ?

Poser une question

Vous devez vous identifier avec votre compte pour répondre aux messages. Veuillez poser une nouvelle question, si vous n’avez pas encore de compte.