Firefox 111.0: fix puzzle piece in toolbar
Starting in Firefox 109.0, we could use a line in the prefs.js
(or about:config
) to remove the annoying puzzle piece.
user_pref("extensions.unifiedExtensions.enable", false);
However, starting in Firefox 111.0 the Mozilla people started ignoring this pref. The brilliant folks over at askvg.com solved this one though!
You have take a few steps for this solution.
- Set
about:config
valuetoolkit.legacyUserProfileCustomizations.stylesheets
totrue
. - Visit the profile directory (available from
about:support
, button "Open Directory") and make sub-directorychrome
. - Make file
chrome/userChrome.css
with contents:
#unified-extensions-button, #unified-extensions-button > .toolbarbutton-icon{ width: 0px !important; padding: 0px !important; }
- Restart Firefox.
I don't plan on ever using Chrome, but wow, the Mozilla people make me want to look for something else.
This is the first time I've ever needed to modify userChrome.css. Ever since 2006, I have never needed it!
Comments