Skip to content

Instantly share code, notes, and snippets.

@eproxus
Last active February 20, 2022 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eproxus/f95c2d2bd0f9b8f5d2b6f464e27cc29a to your computer and use it in GitHub Desktop.
Save eproxus/f95c2d2bd0f9b8f5d2b6f464e27cc29a to your computer and use it in GitHub Desktop.
Hide Firefox Tab Bar on Windows
  1. Go to MenuHelpMore troubleshooting informationApplication BasicsProfile FolderOpen Folder
  2. Create a folder named chrome
  3. Create a new text file inside chrome named userChrome.css and paste the content
  4. Go to about:config in Firefox
  5. Change the setting toolkit.legacyUserProfileCustomizations.stylesheets to true
  6. Restart Firefox
#titlebar {
visibility: collapse;
}
#TabsToolbar .titlebar-buttonbox-container {
visibility: visible;
display: block;
position: absolute;
top: 2px;
right: 0;
}
#nav-bar {
padding-right: 160px;
background-color: black !important;
}
#main-window {
border-top: 1px solid #282828;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment