Firefox
Extensions
- uBlock Origin
- Bypass Paywalls
- Sidebery
- Stylus
- Cookie Remover
- Old Reddit Redirect
- Export Cookies
- AlwaysKillSticky
Fix scrolling on Linux
- Set
mousewheel.default.delta_multiplier_y
to33
Open tab next to current tab
- Ctrl-click on the new tab button
Link to a particular page in a PDF
- Append
#page=<page number>
to the URL
Disable tab bar
- If using Sidebery, the tab bar at the top of the browser is redundant. To get rid of it:
- Enable loading of
userChrome.css
:- Go to
about:config
- Search for:
toolkit.legacyUserProfileCustomizations.stylesheets
- Toggle it from
false
totrue
- Go to
- Find your Firefox profile directory:
- Go to
about:profiles
- Find the in-use profile and click the "Open Folder" button on its root directory
- Create a
chrome
directory if it is not present - In the
chrome
directory, create auserChrome.css
file with the following contents:#TabsToolbar { display: none !important; } #titlebar { display: none !important; } #alltabs-button { display: none !important; }
- Create a
- Restart Firefox
- If, after a restart, Firefox doesn't seem to be picking up the changes from
userChrome.css
, try going intoabout:profiles
and hitting theRestart
button there
- Enable loading of
Remove back and forward buttons
- Enable
userChrome.css
(as per the disable tab bar section) - In
userChrome.css
, add the following:@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #back-button, #forward-button { display:none!important; }
Disable Sidebar Transparency in MacOS:
- Add the following to
userChrome.css
#sidebar-box, .sidebar-panel .sidebar-placesTree { -moz-appearance: none !important; opacity: 1; }
Efficiently move tabs around
- Move tab left:
Ctrl-Shift-PgUp
- Move tab right:
Ctrl-Shift-PgDn
Always show the tab dropdown
- Go into
about:config
and setbrowser.tabs.tabmanager.enabled
totrue
Always open new tabs next to the current tab
- Go into
about:config
and setbrowser.tabs.insertAfterCurrent
totrue
SSL_ERROR_PROTOCOL_VERSION_ALERT
when accessing Google Services
- Go into
about:config
and setsecurity.tls.enable_0rtt_data
to false- Tracked by this bug
- Go into
about:config
and setsecurity.tls.version.min
to1
- Also set
security.tls.version.fallback-limit
to1
- Also set
SSL_ERROR_RX_MALFORMED_SERVER_HELLO
- Go into
about:config
and setsecurity.osclientcerts.autoload
totrue
security.enterprise_roots.enabled
totrue
Deactivate search within the address bar
- Go into
about:config
and- Set
browser.urlbar.suggest.searches
tofalse
- Set
keyword.enabled
tofalse
- Set
browser.fixup.alternate.enabled
tofalse
- Set
Go to your homepage quickly
- On MacOS:
Option-Home
(Option-Fn-Left
) - Windows:
Alt-Home
Force reload
- MacOS:
Cmd-Shift-R
- Windows:
Ctrl-F5