Use tab-less firefix extension to force windows instead of tabs.
Last active
April 23, 2020 19:44
-
-
Save cubimon/699959d3bd8ce92f9e1c8afac9c26bc8 to your computer and use it in GitHub Desktop.
Firefox hide tabbar
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
/* | |
* Do not remove the @namespace line -- it's required for correct functioning | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
#tabbrowser-tabs { | |
visibility: collapse; | |
} | |
#tabbrowser-tabs .tabs-newtab-button { | |
visibility: collapse; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment