How to hide bookmarks toolbar icons in Firefox (v106, 2022) on macOS

aubreypwd

Aubrey Portwood

Posted on September 28, 2022

How to hide bookmarks toolbar icons in Firefox (v106, 2022) on macOS

Add:

@-moz-document url(chrome://browser/content/browser.xhtml){
    #personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-icon {
        display: none !important;
    }
}
Enter fullscreen mode Exit fullscreen mode

To:

/Users/<username>/Library/Application Support/Firefox/Profiles/xxxxxxxx.dev-edition-default/chrome/userChrome.css
Enter fullscreen mode Exit fullscreen mode

File contents in Sublime Text

Result is no icons in Firefox Toolbar

đź’– đź’Ş đź™… đźš©
aubreypwd
Aubrey Portwood

Posted on September 28, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related