Last active
February 26, 2024 20:39
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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