Last active
January 18, 2025 03:07
-
-
Save sinistersnare/71f878e884fcc8809d9fd245f2d5dea1 to your computer and use it in GitHub Desktop.
my firefox userChrome.css file (check about:profiles), and config
This file contains 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
/* | |
MAKE SURE toolkit.legacyUserProfileCustomizations.stylesheets IS SET TO TRUE! | |
Also set: | |
* mousewheel.with_meta.action = 3 // When cmd+scroll to zoom is used (macOS) | |
* mousewheel.with_control.action = 3 // When ctrl+scroll to zoom (!macOS). | |
* privacy.resistFingerprinting = true | |
* privacy.resistFingerprinting.autoDeclineNoUserInputCanvasPrompts = false | |
* privacy.userContext.enabled = false // disables 'open in new container tab' | |
* browser.urlbar.suggest.calculator = true // why does Firefox turn off good features by default? And make them so undiscoverable! | |
And turn titlebar on in the "customize toolbar" page. | |
*/ | |
/* Hide horizontal tabs at the top of the window | |
From https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#hide-horizontal-tabs-at-the-top-of-the-window-1349-1672-2147 | |
*/ | |
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items { | |
opacity: 0; | |
pointer-events: none; | |
} | |
#main-window:not([tabsintitlebar="true"]) #TabsToolbar { | |
visibility: collapse !important; | |
} | |
toolbarbutton.bookmark-item | |
{ | |
font-size:15px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment