Skip to content

Instantly share code, notes, and snippets.

@akersten
Last active February 26, 2024 20:39
Show Gist options
  • Save akersten/8fa7d36960b10c5ae18c01ada3d778bd to your computer and use it in GitHub Desktop.
Save akersten/8fa7d36960b10c5ae18c01ada3d778bd to your computer and use it in GitHub Desktop.
userChrome.css to hide Firefox native tab bar and extension sidebar header (for use with TreeStyleTabs)
/*
* about:config -> toolkit.legacyUserProfileCustomizations.stylesheets : True
* about:support -> Profile Folder -> Open Folder
* Create `chrome` direcory
*/
#tabbrowser-tabs {
visibility: collapse !important;
}
#sidebar-header {
visibility: collapse !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment