Skip to content

Firefox Styles Snippets (via userChrome.css)

mbnuqw edited this page Feb 27, 2020 · 10 revisions

🚧 Work In Progress 🚧

Firefox Styles Snippets (via userChrome.css)

Note: Starting with Firefox 69 you have to enable toolkit.legacyUserProfileCustomizations.stylesheets in about:config.

In 'Profile Directory' (Menu > Help > Troubleshooting Information > Profile Directory) create folder chrome with file userChrome.css.

To find and inspect browser's selectors open Browser Toolbox.


Completely hide tabs strip

#TabsToolbar {
  display: none;
}

Hide tabs strip only in fullscreen

#TabsToolbar[inFullscreen="true"] {
  display: none;
}

Hide sidebar top-menu

#sidebar-header {
  display: none;
}
Clone this wiki locally