Last active
October 13, 2020 19:54
-
-
Save oblitum/eb66b147a834f4f385fa9e79df7ecb88 to your computer and use it in GitHub Desktop.
Firefox settings
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
Enable toolkit.legacyUserProfileCustomizations.stylesheets in about:config. | |
In the ~/.mozilla/firefox/<profile>/chrome directory, copy userChrome.css and userContent.css bellow | |
and clone https://github.com/MrOtherGuy/firefox-csshacks.git. This is to auto-hide the tab/address/bookmark bars, | |
leaving just the main content and the thinner scrollbars (from Dark Scroll). It also hides the status with links, | |
which may be displayed through Link Status Redux instead. | |
Some must have extensions: | |
- Dark Reader (for dark mode) | |
- Dark Scroll (for much nicer scroll bars) | |
- Link Status Redux (configure "Bottom-left corner" for "Position of the popup") | |
- SurfingKeys (for vi mode) | |
- PassFF | |
- uBlock Origin | |
- cliget | |
- HTTPS Everywhere | |
- To Google Translate | |
- Bypass Paywalls |
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
@import url("firefox-csshacks/chrome/autohide_toolbox.css"); | |
#statuspanel[type="overLink"] { | |
display: none !important; | |
} | |
#statuspanel[type="overLink"], | |
#statuspanel[inactive][previoustype="overLink"] { | |
-moz-transition: none !important; | |
} | |
browser[type="content-primary"], | |
browser[type="content"] { | |
background: #1e2132 !important; | |
} |
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
@import url("firefox-csshacks/content/dark_settings_pages.css"); | |
@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing") { | |
body{background-color: #1e2132 !important;} | |
.card{background-color: #191c25 !important;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment