Skip to content

Instantly share code, notes, and snippets.

@sdebnath
Last active November 28, 2022 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdebnath/48ae27ff1582eacdf76625419afcf038 to your computer and use it in GitHub Desktop.
Save sdebnath/48ae27ff1582eacdf76625419afcf038 to your computer and use it in GitHub Desktop.
Disable top tab bar in Firefox 90+

How to disable top tab bar in Firefox 107+ (Tested Nov 27, 2022)

Create custom userChrome.css

  1. Determine profile folder: Help > More troubleshooting information > Profile Folder
  2. Create a folder called chrome in the profile directory
  3. Create a file userChrome.css in the chrome directory with the following contents:
#TabsToolbar { visibility: collapse !important; }

Allow legacy user profile customizations

  1. Navigate to about:config
  2. Search for toolkit.legacyUserProfileCustomizations.stylesheets and toggle it to true if false
  3. Restart browser

References

  1. https://www.ghacks.net/2019/05/24/firefox-69-userchrome-css-and-usercontent-css-disabled-by-default/
  2. https://itectec.com/superuser/how-to-hide-tab-bar-tabstrip-in-firefox-57-quantum/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment