mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 15:40:48 +05:30
Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5fca2dbf7 | |||
| 9756922ee9 | |||
| dfb297bbfb | |||
| cf2c13a45f | |||
| c366439145 | |||
| bd128d8d56 | |||
| d4f1744b0c | |||
| 14de7b101d | |||
| 27bcd885b7 | |||
| 64774680a9 | |||
| 4d23050c74 | |||
| 042bcc1c56 | |||
| 396a465b73 | |||
| d7a530164e | |||
| 1653fc9014 | |||
| 6657c83ae2 | |||
| 4b75f957f9 | |||
| 52e6deb863 | |||
| 6887c6d2f9 | |||
| 099fe168ba | |||
| 4c0b1791dc | |||
| 687785a8d3 | |||
| b833ea7300 | |||
| c574f6057f | |||
| 4ed949c78b | |||
| dae0e10c1d | |||
| 084b173e07 | |||
| d164ac1395 | |||
| 0334bea972 | |||
| 726f4d4a6b | |||
| dd49bcaae4 | |||
| 288676b07d | |||
| 2b8b671fe1 | |||
| 251cf5743b | |||
| dfce923d85 | |||
| fd0f341da5 | |||
| cb672bd172 | |||
| 5876a8e053 | |||
| 29590403f5 | |||
| ddc209c2dd | |||
| c8f0e736be | |||
| b421419426 |
@@ -0,0 +1,13 @@
|
|||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: yokoffing
|
||||||
|
patreon: # Replace with a single Patreon username
|
||||||
|
open_collective: # Replace with a single Open Collective username
|
||||||
|
ko_fi: yokoffing
|
||||||
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||||
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||||
|
liberapay: yokoffing
|
||||||
|
issuehunt: # Replace with a single IssueHunt username
|
||||||
|
otechie: # Replace with a single Otechie username
|
||||||
|
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||||
|
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: Bug report
|
name: Something is not working!
|
||||||
about: Create a report to help us improve
|
about: Use this form if you have an issue.
|
||||||
title: ''
|
title: ''
|
||||||
labels: ''
|
labels: ''
|
||||||
assignees: yokoffing
|
assignees: yokoffing
|
||||||
@@ -35,9 +35,9 @@ I have attempted the following troubleshooting suggestions:
|
|||||||
*If applicable, add screenshots to help explain your problem.*
|
*If applicable, add screenshots to help explain your problem.*
|
||||||
|
|
||||||
**Desktop (please complete the following information):**
|
**Desktop (please complete the following information):**
|
||||||
- OS: [e.g. iOS]
|
- OS:
|
||||||
- Browser [e.g. chrome, safari]
|
- Browser:
|
||||||
- Version [e.g. 22]
|
- Version:
|
||||||
|
|
||||||
**Additional context**
|
**Additional context**
|
||||||
*Add any other context about the problem here.*
|
*Add any other context about the problem here.*
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
name: Feature request
|
|
||||||
about: Suggest an idea for this project
|
|
||||||
title: ''
|
|
||||||
labels: ''
|
|
||||||
assignees: yokoffing
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
+589
-554
File diff suppressed because it is too large
Load Diff
+186
-100
@@ -3,33 +3,16 @@
|
|||||||
* Peskyfox *
|
* Peskyfox *
|
||||||
* "Aquila non capit muscas" *
|
* "Aquila non capit muscas" *
|
||||||
* priority: remove annoyances *
|
* priority: remove annoyances *
|
||||||
* version: 116 *
|
* version: 128 *
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
* url: https://github.com/yokoffing/Betterfox *
|
||||||
|
* credit: Some prefs are reproduced and adapted from the arkenfox project *
|
||||||
|
* credit urL: https://github.com/arkenfox/user.js *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: MOZILLA UI *
|
* SECTION: MOZILLA UI *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
// PREF: choose what theme Firefox follows by default
|
|
||||||
// Dark (0), Light (1), System (2), or Browser (3) (default)
|
|
||||||
// [1] https://www.reddit.com/r/firefox/comments/rfj6yc/how_to_stop_firefoxs_dark_theme_from_overriding/hoe82i5/?context=3
|
|
||||||
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
|
||||||
|
|
||||||
// PREF: disable always using dark theme for private browsing windows [FF106+]
|
|
||||||
//user_pref("browser.theme.dark-private-windows", false);
|
|
||||||
|
|
||||||
// PREF: enable Firefox to use userChome, userContent, etc.
|
|
||||||
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
|
||||||
|
|
||||||
// PREF: disable annoying update restart prompts
|
|
||||||
// Delay update available prompts for ~1 week.
|
|
||||||
// Will still show green arrow in menu bar.
|
|
||||||
user_pref("app.update.suppressPrompts", true);
|
|
||||||
|
|
||||||
// PREF: add compact mode back to options
|
|
||||||
user_pref("browser.compactmode.show", true);
|
|
||||||
|
|
||||||
// PREF: Mozilla VPN
|
// PREF: Mozilla VPN
|
||||||
// [1] https://github.com/yokoffing/Betterfox/issues/169
|
// [1] https://github.com/yokoffing/Betterfox/issues/169
|
||||||
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
||||||
@@ -37,8 +20,23 @@ user_pref("browser.privatebrowsing.vpnpromourl", "");
|
|||||||
|
|
||||||
// PREF: disable about:addons' Recommendations pane (uses Google Analytics)
|
// PREF: disable about:addons' Recommendations pane (uses Google Analytics)
|
||||||
user_pref("extensions.getAddons.showPane", false); // HIDDEN
|
user_pref("extensions.getAddons.showPane", false); // HIDDEN
|
||||||
|
|
||||||
|
// PREF: disable recommendations in about:addons' Extensions and Themes panes
|
||||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
||||||
|
|
||||||
|
// PREF: Personalized Extension Recommendations in about:addons and AMO
|
||||||
|
// [NOTE] This pref has no effect when Health Reports are disabled.
|
||||||
|
// [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to make personalized extension recommendations
|
||||||
|
user_pref("browser.discovery.enabled", false);
|
||||||
|
|
||||||
|
// PREF: disable Fakespot integration [FF116+]
|
||||||
|
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0
|
||||||
|
// [2] https://github.com/arkenfox/user.js/issues/1730
|
||||||
|
// [3] https://www.fakespot.com/
|
||||||
|
// [4] https://www.ghacks.net/2023/10/12/firefox-will-soon-tell-you-if-product-reviews-are-reliable/
|
||||||
|
//user_pref("browser.shopping.experience2023.enabled", false); // DEFAULT
|
||||||
|
//user_pref("browser.shopping.experience2023.ads.exposure", false); // DEFAULT [FF121+]
|
||||||
|
|
||||||
// PREF: disable Firefox from asking to set as the default browser
|
// PREF: disable Firefox from asking to set as the default browser
|
||||||
// [1] https://github.com/yokoffing/Betterfox/issues/166
|
// [1] https://github.com/yokoffing/Betterfox/issues/166
|
||||||
user_pref("browser.shell.checkDefaultBrowser", false);
|
user_pref("browser.shell.checkDefaultBrowser", false);
|
||||||
@@ -51,13 +49,7 @@ user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features",
|
|||||||
// PREF: hide "More from Mozilla" in Settings
|
// PREF: hide "More from Mozilla" in Settings
|
||||||
user_pref("browser.preferences.moreFromMozilla", false);
|
user_pref("browser.preferences.moreFromMozilla", false);
|
||||||
|
|
||||||
// PREF: only show List All Tabs icon when needed
|
// PREF: tab and about:config warnings
|
||||||
// true=always show tab overflow dropdown (FF106+ default)
|
|
||||||
// false=only display tab dropdown when there are too many tabs
|
|
||||||
// [1] https://www.ghacks.net/2022/10/19/how-to-hide-firefoxs-list-all-tabs-icon/
|
|
||||||
user_pref("browser.tabs.tabmanager.enabled", false);
|
|
||||||
|
|
||||||
// PREF: Warnings
|
|
||||||
//user_pref("browser.tabs.warnOnClose", false); // DEFAULT [FF94+]
|
//user_pref("browser.tabs.warnOnClose", false); // DEFAULT [FF94+]
|
||||||
//user_pref("browser.tabs.warnOnCloseOtherTabs", true); // DEFAULT
|
//user_pref("browser.tabs.warnOnCloseOtherTabs", true); // DEFAULT
|
||||||
//user_pref("browser.tabs.warnOnOpen", true); // DEFAULT
|
//user_pref("browser.tabs.warnOnOpen", true); // DEFAULT
|
||||||
@@ -73,18 +65,55 @@ user_pref("browser.aboutwelcome.enabled", false); // disable Intro screens
|
|||||||
// PREF: disable "What's New" toolbar icon [FF69+]
|
// PREF: disable "What's New" toolbar icon [FF69+]
|
||||||
//user_pref("browser.messaging-system.whatsNewPanel.enabled", false);
|
//user_pref("browser.messaging-system.whatsNewPanel.enabled", false);
|
||||||
|
|
||||||
// PREF: attempt to remove ugly border drawn around links when clicked [macOS]
|
// PREF: only show List All Tabs icon when needed
|
||||||
//user_pref("accessibility.mouse_focuses_formcontrol", 0);
|
// true=always show tab overflow dropdown (FF106+ default)
|
||||||
//user_pref("browser.display.focus_ring_style", 0);
|
// false=only display tab dropdown when there are too many tabs
|
||||||
//user_pref("browser.display.focus_ring_width", 0);
|
// [1] https://www.ghacks.net/2022/10/19/how-to-hide-firefoxs-list-all-tabs-icon/
|
||||||
|
user_pref("browser.tabs.tabmanager.enabled", false);
|
||||||
|
|
||||||
|
// PREF: enable new screenshot tool [FF122+]
|
||||||
|
//user_pref("screenshots.browser.component.enabled", true);
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* SECTION: THEME ADJUSTMENTS *
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
// PREF: enable Firefox to use userChome, userContent, etc.
|
||||||
|
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
||||||
|
|
||||||
|
// PREF: add compact mode back to options
|
||||||
|
user_pref("browser.compactmode.show", true);
|
||||||
|
|
||||||
|
// PREF: remove focus indicator for links
|
||||||
|
// [1] https://www.askvg.com/firefox-tip-restore-classic-dotted-outline-focus-indicator-for-links/
|
||||||
|
user_pref("browser.display.focus_ring_on_anything", true);
|
||||||
|
user_pref("browser.display.focus_ring_style", 0);
|
||||||
|
user_pref("browser.display.focus_ring_width", 0);
|
||||||
|
|
||||||
|
// PREF: preferred color scheme for websites
|
||||||
|
// [SETTING] General>Language and Appearance>Website appearance
|
||||||
|
// By default, color scheme matches the theme of your browser toolbar (3).
|
||||||
|
// Set this pref to choose Dark on sites that support it (0) or Light (1).
|
||||||
|
// Before FF95, the pref was 2, which determined site color based on OS theme.
|
||||||
|
// Dark (0), Light (1), System (2), Browser (3) [DEFAULT FF95+]
|
||||||
|
// [1] https://www.reddit.com/r/firefox/comments/rfj6yc/how_to_stop_firefoxs_dark_theme_from_overriding/hoe82i5/?context=3
|
||||||
|
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
||||||
|
|
||||||
|
// PREF: disable always using dark theme for private browsing windows [FF106+]
|
||||||
|
//user_pref("browser.theme.dark-private-windows", false);
|
||||||
|
|
||||||
// PREF: prevent private windows being separate from normal windows in taskbar [WINDOWS] [FF106+]
|
// PREF: prevent private windows being separate from normal windows in taskbar [WINDOWS] [FF106+]
|
||||||
user_pref("browser.privateWindowSeparation.enabled", false);
|
user_pref("browser.privateWindowSeparation.enabled", false);
|
||||||
|
|
||||||
// PREF: reduce the size of the "private window" indicator in tab bar [FF106+]
|
// PREF: show search bar [FF122+]
|
||||||
user_pref("browser.privatebrowsing.enable-new-indicator", false);
|
// Mozilla has removed the search bar option from the settings window.
|
||||||
|
//user_pref("browser.search.widget.inNavBar", true);
|
||||||
|
|
||||||
// PREF: Cookie Banner handling [NIGHTLY]
|
/****************************************************************************
|
||||||
|
* SECTION: COOKIE BANNER HANDLING *
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
// PREF: Cookie Banner handling
|
||||||
// [NOTE] Feature still enforces Total Cookie Protection to limit 3rd-party cookie tracking [1]
|
// [NOTE] Feature still enforces Total Cookie Protection to limit 3rd-party cookie tracking [1]
|
||||||
// [1] https://github.com/mozilla/cookie-banner-rules-list/issues/33#issuecomment-1318460084
|
// [1] https://github.com/mozilla/cookie-banner-rules-list/issues/33#issuecomment-1318460084
|
||||||
// [2] https://phabricator.services.mozilla.com/D153642
|
// [2] https://phabricator.services.mozilla.com/D153642
|
||||||
@@ -93,38 +122,40 @@ user_pref("browser.privatebrowsing.enable-new-indicator", false);
|
|||||||
// 2: reject banners if it is a one-click option; otherwise, fall back to the accept button to remove banner
|
// 2: reject banners if it is a one-click option; otherwise, fall back to the accept button to remove banner
|
||||||
// 1: reject banners if it is a one-click option; otherwise, keep banners on screen
|
// 1: reject banners if it is a one-click option; otherwise, keep banners on screen
|
||||||
// 0: disable all cookie banner handling
|
// 0: disable all cookie banner handling
|
||||||
user_pref("cookiebanners.service.mode", 2);
|
user_pref("cookiebanners.service.mode", 1);
|
||||||
user_pref("cookiebanners.service.mode.privateBrowsing", 2);
|
user_pref("cookiebanners.service.mode.privateBrowsing", 1);
|
||||||
//user_pref("cookiebanners.bannerClicking.enabled", true); // DEFAULT [FF108]
|
|
||||||
//user_pref("cookiebanners.cookieInjector.enabled", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: global CookieBannerRules [WiP]
|
// PREF: Cookie Banner global rules
|
||||||
// Global rules that can handle a list of cookie banner libraries / providers on any site.
|
// Global rules that can handle a list of cookie banner libraries and providers on any site.
|
||||||
// This is used for click rules that can handle common Consent Management Providers (CMP)
|
// This is used for click rules that can handle common Consent Management Providers (CMP).
|
||||||
// [WARNING] Beware of potential bugs and performance issues. Enabling this may negatively
|
//user_pref("cookiebanners.service.enableGlobalRules", true); // DEFAULT [FF121+]
|
||||||
// impact site performance. It requires Firefox to run rule-defined query selectors for
|
//user_pref("cookiebanners.service.enableGlobalRules.subFrames", true); // DEFAULT [FF121+]
|
||||||
// every page.
|
|
||||||
//user_pref("cookiebanners.service.enableGlobalRules", true);
|
|
||||||
|
|
||||||
// PREF: Firefox Translations [NIGHTLY]
|
/****************************************************************************
|
||||||
|
* SECTION: TRANSLATIONS *
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
// PREF: Firefox Translations [FF118+]
|
||||||
// Automated translation of web content is done locally in Firefox, so that
|
// Automated translation of web content is done locally in Firefox, so that
|
||||||
// the text being translated does not leave your machine.
|
// the text being translated does not leave your machine.
|
||||||
// [ABOUT] Visit about:translations to translate your own text as well.
|
// [ABOUT] Visit about:translations to translate your own text as well.
|
||||||
// [1] https://blog.mozilla.org/en/mozilla/local-translation-add-on-project-bergamot/
|
// [1] https://blog.mozilla.org/en/mozilla/local-translation-add-on-project-bergamot/
|
||||||
// [2] https://blog.nightly.mozilla.org/2023/06/01/firefox-translations-and-other-innovations-these-weeks-in-firefox-issue-139/
|
// [2] https://blog.nightly.mozilla.org/2023/06/01/firefox-translations-and-other-innovations-these-weeks-in-firefox-issue-139/
|
||||||
// [3] https://www.ghacks.net/2023/08/02/mozilla-firefox-117-beta-brings-an-automatic-language-translator-for-websites-and-it-works-offline/
|
// [3] https://www.ghacks.net/2023/08/02/mozilla-firefox-117-beta-brings-an-automatic-language-translator-for-websites-and-it-works-offline/
|
||||||
user_pref("browser.translations.enable", true);
|
//user_pref("browser.translations.enable", true); // DEFAULT
|
||||||
//user_pref("browser.translations.autoTranslate", true);
|
//user_pref("browser.translations.autoTranslate", true);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: FULLSCREEN NOTICE *
|
* SECTION: FULLSCREEN NOTICE *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
// PREF: disable fullscreen delay and notice
|
// PREF: remove fullscreen delay
|
||||||
user_pref("full-screen-api.transition-duration.enter", "0 0");
|
user_pref("full-screen-api.transition-duration.enter", "0 0"); // default=200 200
|
||||||
user_pref("full-screen-api.transition-duration.leave", "0 0");
|
user_pref("full-screen-api.transition-duration.leave", "0 0"); // default=200 200
|
||||||
user_pref("full-screen-api.warning.delay", -1);
|
|
||||||
user_pref("full-screen-api.warning.timeout", 0);
|
// PREF: disable fullscreen notice
|
||||||
|
user_pref("full-screen-api.warning.delay", -1); // default=500
|
||||||
|
user_pref("full-screen-api.warning.timeout", 0); // default=3000
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: FONT APPEARANCE *
|
* SECTION: FONT APPEARANCE *
|
||||||
@@ -156,32 +187,45 @@ user_pref("full-screen-api.warning.timeout", 0);
|
|||||||
|
|
||||||
// PREF: minimize URL bar suggestions (bookmarks, history, open tabs)
|
// PREF: minimize URL bar suggestions (bookmarks, history, open tabs)
|
||||||
// Dropdown options in the URL bar:
|
// Dropdown options in the URL bar:
|
||||||
//user_pref("browser.urlbar.suggest.bookmark", true);
|
|
||||||
user_pref("browser.urlbar.suggest.engines", false);
|
|
||||||
//user_pref("browser.urlbar.suggest.history", false);
|
//user_pref("browser.urlbar.suggest.history", false);
|
||||||
|
//user_pref("browser.urlbar.suggest.bookmark", true); // DEFAULT
|
||||||
|
//user_pref("browser.urlbar.suggest.clipboard", false);
|
||||||
//user_pref("browser.urlbar.suggest.openpage", false);
|
//user_pref("browser.urlbar.suggest.openpage", false);
|
||||||
//user_pref("browser.urlbar.suggest.quickactions", false); // [NIGHTLY-only]
|
user_pref("browser.urlbar.suggest.engines", false);
|
||||||
//user_pref("browser.urlbar.suggest.searches", false);
|
//user_pref("browser.urlbar.suggest.searches", false);
|
||||||
|
//user_pref("browser.urlbar.quickactions.enabled", false);
|
||||||
|
//user_pref("browser.urlbar.shortcuts.quickactions", false);
|
||||||
//user_pref("browser.urlbar.suggest.weather", true); // DEFAULT [FF108]
|
//user_pref("browser.urlbar.suggest.weather", true); // DEFAULT [FF108]
|
||||||
//user_pref("browser.urlbar.weather.ignoreVPN", false); // DEFAULT
|
//user_pref("browser.urlbar.weather.ignoreVPN", false); // DEFAULT
|
||||||
|
|
||||||
// PREF: disable dropdown suggestions with empty query:
|
|
||||||
user_pref("browser.urlbar.suggest.topsites", false);
|
|
||||||
|
|
||||||
// PREF: enable helpful features:
|
|
||||||
user_pref("browser.urlbar.suggest.calculator", true);
|
user_pref("browser.urlbar.suggest.calculator", true);
|
||||||
user_pref("browser.urlbar.unitConversion.enabled", true);
|
user_pref("browser.urlbar.unitConversion.enabled", true);
|
||||||
|
|
||||||
|
// PREF: disable dropdown suggestions with empty query
|
||||||
|
//user_pref("browser.urlbar.suggest.topsites", false);
|
||||||
|
|
||||||
|
// PREF: disable urlbar trending search suggestions [FF118+]
|
||||||
|
// [SETTING] Search>Search Suggestions>Show trending search suggestions (FF119)
|
||||||
|
user_pref("browser.urlbar.trending.featureGate", false);
|
||||||
|
//user_pref("browser.urlbar.suggest.trending", false);
|
||||||
|
|
||||||
|
// PREF: disable urlbar suggestions
|
||||||
|
//user_pref("browser.urlbar.addons.featureGate", false); // [FF115+]
|
||||||
|
//user_pref("browser.urlbar.mdn.featureGate", false); // [FF117+] [HIDDEN PREF]
|
||||||
|
//user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false]
|
||||||
|
//user_pref("browser.urlbar.weather.featureGate", false); // [FF108+] [DEFAULT: false]
|
||||||
|
//user_pref("browser.urlbar.clipboard.featureGate", false); // [FF118+] [DEFAULT: true FF125+]
|
||||||
|
//user_pref("browser.urlbar.yelp.featureGate", false); // [FF124+] [DEFAULT: false]
|
||||||
|
|
||||||
|
// PREF: disable tab-to-search [FF85+]
|
||||||
|
// Alternatively, you can exclude on a per-engine basis by unchecking them in Options>Search
|
||||||
|
// [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest>Search engines
|
||||||
|
//user_pref("browser.urlbar.suggest.engines", false);
|
||||||
|
|
||||||
// PREF: Adaptive History Autofill
|
// PREF: Adaptive History Autofill
|
||||||
// [1] https://docs.google.com/document/u/1/d/e/2PACX-1vRBLr_2dxus-aYhZRUkW9Q3B1K0uC-a0qQyE3kQDTU3pcNpDHb36-Pfo9fbETk89e7Jz4nkrqwRhi4j/pub
|
// [1] https://docs.google.com/document/u/1/d/e/2PACX-1vRBLr_2dxus-aYhZRUkW9Q3B1K0uC-a0qQyE3kQDTU3pcNpDHb36-Pfo9fbETk89e7Jz4nkrqwRhi4j/pub
|
||||||
//user_pref("browser.urlbar.autoFill", true); // [DEFAULT]
|
//user_pref("browser.urlbar.autoFill", true); // [DEFAULT]
|
||||||
//user_pref("browser.urlbar.autoFill.adaptiveHistory.enabled", false);
|
//user_pref("browser.urlbar.autoFill.adaptiveHistory.enabled", false);
|
||||||
|
|
||||||
// PREF: Quick Actions in the URL Bar [NIGHTLY-only]
|
|
||||||
// [1] https://www.ghacks.net/2022/07/19/mozilla-is-testing-quick-actions-in-firefoxs-address-bar/
|
|
||||||
//user_pref("browser.urlbar.quickactions.enabled", false);
|
|
||||||
//user_pref("browser.urlbar.shortcuts.quickactions", false);
|
|
||||||
|
|
||||||
// PREF: adjust the amount of Address bar / URL bar dropdown results
|
// PREF: adjust the amount of Address bar / URL bar dropdown results
|
||||||
// This value controls the total number of entries to appear in the location bar dropdown.
|
// This value controls the total number of entries to appear in the location bar dropdown.
|
||||||
// [NOTE] Items (bookmarks/history/openpages) with a high "frequency"/"bonus" will always
|
// [NOTE] Items (bookmarks/history/openpages) with a high "frequency"/"bonus" will always
|
||||||
@@ -190,6 +234,12 @@ user_pref("browser.urlbar.unitConversion.enabled", true);
|
|||||||
// disable=0
|
// disable=0
|
||||||
//user_pref("browser.urlbar.maxRichResults", 5); // default=10
|
//user_pref("browser.urlbar.maxRichResults", 5); // default=10
|
||||||
|
|
||||||
|
// PREF: text fragments [FF126+ NIGHTLY]
|
||||||
|
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1753933#c6
|
||||||
|
// [2] https://developer.mozilla.org/en-US/docs/Web/Text_fragments
|
||||||
|
// [3] https://web.dev/articles/text-fragments
|
||||||
|
//user_pref("dom.text_fragments.enabled", true);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: AUTOPLAY *
|
* SECTION: AUTOPLAY *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
@@ -212,13 +262,13 @@ user_pref("browser.urlbar.unitConversion.enabled", true);
|
|||||||
* SECTION: NEW TAB PAGE *
|
* SECTION: NEW TAB PAGE *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
// PREF: open windows/tabs from last session
|
// PREF: startup / new tab page
|
||||||
// 0=blank, 1=home, 2=last visited page, 3=resume previous session
|
// 0=blank, 1=home, 2=last visited page, 3=resume previous session
|
||||||
// [NOTE] Session Restore is cleared with history and not used in Private Browsing mode
|
// [NOTE] Session Restore is cleared with history and not used in Private Browsing mode
|
||||||
// [SETTING] General>Startup>Restore previous session
|
// [SETTING] General>Startup>Open previous windows and tabs
|
||||||
//user_pref("browser.startup.page", 3);
|
//user_pref("browser.startup.page", 3);
|
||||||
|
|
||||||
// PREF: set HOME+NEWWINDOW page to blank tab
|
// PREF: set HOME+NEW WINDOW page to blank tab
|
||||||
// about:home=Activity Stream, custom URL, about:blank
|
// about:home=Activity Stream, custom URL, about:blank
|
||||||
// [SETTING] Home>New Windows and Tabs>Homepage and new windows
|
// [SETTING] Home>New Windows and Tabs>Homepage and new windows
|
||||||
// [Custom URLs] Set two or more websites in Home Page Field – delimited by |
|
// [Custom URLs] Set two or more websites in Home Page Field – delimited by |
|
||||||
@@ -236,7 +286,9 @@ user_pref("browser.urlbar.unitConversion.enabled", true);
|
|||||||
//user_pref("browser.newtabpage.activity-stream.discoverystream.enabled", false);
|
//user_pref("browser.newtabpage.activity-stream.discoverystream.enabled", false);
|
||||||
//user_pref("browser.newtabpage.activity-stream.showSearch", true); // NTP Web Search [DEFAULT]
|
//user_pref("browser.newtabpage.activity-stream.showSearch", true); // NTP Web Search [DEFAULT]
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); // Shortcuts
|
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); // Shortcuts
|
||||||
//user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Sponsored shortcuts [FF83+]
|
//user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Shortcuts > Sponsored shortcuts [FF83+]
|
||||||
|
//user_pref("browser.newtabpage.activity-stream.showWeather", false); // Weather [FF128+ NIGHTLY]
|
||||||
|
//user_pref("browser.newtabpage.activity-stream.system.showWeather", false); // Weather [FF128+ NIGHTLY]
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); // Recommended by Pocket
|
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); // Recommended by Pocket
|
||||||
//user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Sponsored Stories [FF58+]
|
//user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Sponsored Stories [FF58+]
|
||||||
//user_pref("browser.newtabpage.activity-stream.feeds.section.highlights", false); // Recent Activity [DEFAULT]
|
//user_pref("browser.newtabpage.activity-stream.feeds.section.highlights", false); // Recent Activity [DEFAULT]
|
||||||
@@ -246,6 +298,13 @@ user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
|
|||||||
//user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
|
//user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
|
||||||
//user_pref("browser.newtabpage.activity-stream.feeds.snippets", false); // [DEFAULT]
|
//user_pref("browser.newtabpage.activity-stream.feeds.snippets", false); // [DEFAULT]
|
||||||
|
|
||||||
|
// PREF: wallpapers on New Tab [FF128+ NIGHTLY]
|
||||||
|
//user_pref("browser.newtabpage.activity-stream.newtabWallpapers.enabled", false); // Wallpapers
|
||||||
|
|
||||||
|
// PREF: clear default topsites
|
||||||
|
// [NOTE] This does not block you from adding your own.
|
||||||
|
//user_pref("browser.newtabpage.activity-stream.default.sites", "");
|
||||||
|
|
||||||
// PREF: keep search in the search box; prevent from jumping to address bar
|
// PREF: keep search in the search box; prevent from jumping to address bar
|
||||||
// [1] https://www.reddit.com/r/firefox/comments/oxwvbo/firefox_start_page_search_options/
|
// [1] https://www.reddit.com/r/firefox/comments/oxwvbo/firefox_start_page_search_options/
|
||||||
//user_pref("browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar", false);
|
//user_pref("browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar", false);
|
||||||
@@ -275,27 +334,36 @@ user_pref("extensions.pocket.enabled", false);
|
|||||||
// PREF: choose download location
|
// PREF: choose download location
|
||||||
// [SETTING] To set your default "downloads": General>Downloads>Save files to...
|
// [SETTING] To set your default "downloads": General>Downloads>Save files to...
|
||||||
// 0=desktop, 1=downloads (default), 2=last used
|
// 0=desktop, 1=downloads (default), 2=last used
|
||||||
//user_pref("browser.download.folderList", 2);
|
//user_pref("browser.download.folderList", 1); // DEFAULT
|
||||||
|
|
||||||
// PREF: Enforce user interaction for security by always asking where to download
|
// PREF: always ask how to handle new mimetypes [FF101+]
|
||||||
// [SETTING] General>Downloads>Always ask you where to save files
|
// Enforce user interaction for greater security.
|
||||||
// false=the user is asked what to do
|
// [SETTING] General>Files and Applications>Applications>What should Firefox do with other files?
|
||||||
user_pref("browser.download.useDownloadDir", false);
|
// false=Save files
|
||||||
//user_pref("browser.download.dir", "C:\Users\<YOUR_USERNAME>\AppData\Local\Temp"); // [WINDOWS]
|
// true=Ask whether to open or save files
|
||||||
|
|
||||||
// PREF: disable downloads panel opening on every download
|
|
||||||
user_pref("browser.download.alwaysOpenPanel", false);
|
|
||||||
|
|
||||||
// PREF: disable adding downloads to the system's "recent documents" list
|
|
||||||
user_pref("browser.download.manager.addToRecentDocs", false);
|
|
||||||
|
|
||||||
// PREF: enable user interaction for security by always asking how to handle new mimetypes
|
|
||||||
// [SETTING] General>Files and Applications>What should Firefox do with other files
|
|
||||||
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
||||||
|
|
||||||
|
// PREF: always ask where to download
|
||||||
|
// [OPTIONAL HARDENING] Enforce user interaction for greater security.
|
||||||
|
// [SETTING] General>Files and Applications>Downloads>Always ask you where to save files
|
||||||
|
// [DIALOGUE] "Ask whether to open or save files"
|
||||||
|
// true=direct download (default)
|
||||||
|
// false=the user is asked what to do
|
||||||
|
// [1] https://github.com/yokoffing/Betterfox/issues/267
|
||||||
|
//user_pref("browser.download.useDownloadDir", false);
|
||||||
|
//user_pref("browser.download.dir", "C:\Users\<YOUR_USERNAME>\AppData\Local\Temp"); // [WINDOWS]
|
||||||
|
|
||||||
// PREF: autohide the downloads button
|
// PREF: autohide the downloads button
|
||||||
//user_pref("browser.download.autohideButton", true); // DEFAULT
|
//user_pref("browser.download.autohideButton", true); // DEFAULT
|
||||||
|
|
||||||
|
// PREF: disable download panel opening on every download [non-functional?]
|
||||||
|
// Controls whether to open the download panel every time a download begins.
|
||||||
|
// [NOTE] The first download ever ran in a new profile will still open the panel.
|
||||||
|
//user_pref("browser.download.alwaysOpenPanel", false);
|
||||||
|
|
||||||
|
// PREF: disable adding downloads to the system's "recent documents" list
|
||||||
|
user_pref("browser.download.manager.addToRecentDocs", false);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: PDF *
|
* SECTION: PDF *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
@@ -303,6 +371,7 @@ user_pref("browser.download.always_ask_before_handling_new_types", true);
|
|||||||
// PREF: enforce Firefox's built-in PDF reader
|
// PREF: enforce Firefox's built-in PDF reader
|
||||||
// This setting controls if the option "Display in Firefox" is available in the setting below
|
// This setting controls if the option "Display in Firefox" is available in the setting below
|
||||||
// and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With").
|
// and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With").
|
||||||
|
// [1] https://mozilla.github.io/pdf.js/
|
||||||
//user_pref("pdfjs.disabled", false); // DEFAULT
|
//user_pref("pdfjs.disabled", false); // DEFAULT
|
||||||
|
|
||||||
// PREF: allow viewing of PDFs even if the response HTTP headers
|
// PREF: allow viewing of PDFs even if the response HTTP headers
|
||||||
@@ -312,11 +381,12 @@ user_pref("browser.download.always_ask_before_handling_new_types", true);
|
|||||||
// PREF: open PDFs inline (FF103+)
|
// PREF: open PDFs inline (FF103+)
|
||||||
user_pref("browser.download.open_pdf_attachments_inline", true);
|
user_pref("browser.download.open_pdf_attachments_inline", true);
|
||||||
|
|
||||||
// PREF: PDF sidebar on load [HIDDEN]
|
// PREF: PDF sidebar on load
|
||||||
// 2=table of contents (if not available, will default to 1)
|
// 2=table of contents (if not available, will default to 1)
|
||||||
// 1=view pages
|
// 1=view pages
|
||||||
// -1=disabled (default)
|
// 0=disabled
|
||||||
user_pref("pdfjs.sidebarViewOnLoad", 2);
|
// -1=remember previous state (default)
|
||||||
|
//user_pref("pdfjs.sidebarViewOnLoad", 2);
|
||||||
|
|
||||||
// PREF: default zoom for PDFs [HIDDEN]
|
// PREF: default zoom for PDFs [HIDDEN]
|
||||||
// [NOTE] "page-width" not needed if using sidebar on load
|
// [NOTE] "page-width" not needed if using sidebar on load
|
||||||
@@ -373,11 +443,9 @@ user_pref("pdfjs.sidebarViewOnLoad", 2);
|
|||||||
// [1] https://kb.mozillazine.org/About:config_entries
|
// [1] https://kb.mozillazine.org/About:config_entries
|
||||||
//user_pref("browser.tabs.loadDivertedInBackground", false); // DEFAULT
|
//user_pref("browser.tabs.loadDivertedInBackground", false); // DEFAULT
|
||||||
|
|
||||||
// PREF: load bookmarks in the background when left-clicking in Bookmarks Menu
|
|
||||||
//user_pref("browser.tabs.loadBookmarksInBackground", true);
|
|
||||||
|
|
||||||
// PREF: force bookmarks to open in a new tab, not the current tab
|
// PREF: force bookmarks to open in a new tab, not the current tab
|
||||||
user_pref("browser.tabs.loadBookmarksInTabs", true);
|
//user_pref("browser.tabs.loadBookmarksInTabs", true);
|
||||||
|
//user_pref("browser.tabs.loadBookmarksInBackground", true); // load bookmarks in background
|
||||||
|
|
||||||
// PREF: leave Bookmarks Menu open when selecting a site
|
// PREF: leave Bookmarks Menu open when selecting a site
|
||||||
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
||||||
@@ -414,15 +482,21 @@ user_pref("findbar.highlightAll", true);
|
|||||||
//user_pref("browser.tabs.closeWindowWithLastTab", false);
|
//user_pref("browser.tabs.closeWindowWithLastTab", false);
|
||||||
|
|
||||||
// PREF: stop websites from reloading pages automatically
|
// PREF: stop websites from reloading pages automatically
|
||||||
// [WARNING] Breakage with some sites.
|
// [WARNING] Breaks some sites.
|
||||||
// [1] https://www.ghacks.net/2018/08/19/stop-websites-from-reloading-pages-automatically/
|
// [1] https://www.ghacks.net/2018/08/19/stop-websites-from-reloading-pages-automatically/
|
||||||
//user_pref("accessibility.blockautorefresh", true);
|
//user_pref("accessibility.blockautorefresh", true);
|
||||||
//user_pref("browser.meta_refresh_when_inactive.disabled", true);
|
//user_pref("browser.meta_refresh_when_inactive.disabled", true);
|
||||||
|
|
||||||
// PREF: Controls if a double click word selection also deletes one adjacent whitespace
|
// PREF: do not select the space next to a word when selecting a word
|
||||||
// (if feasible). This mimics native behavior on macOS.
|
user_pref("layout.word_select.eat_space_to_next_word", false);
|
||||||
|
|
||||||
|
// PREF: controls if a double-click word selection also deletes one adjacent whitespace
|
||||||
|
// This mimics native behavior on macOS.
|
||||||
//user_pref("editor.word_select.delete_space_after_doubleclick_selection", true);
|
//user_pref("editor.word_select.delete_space_after_doubleclick_selection", true);
|
||||||
|
|
||||||
|
// PREF: do not hide the pointer while typing [LINUX]
|
||||||
|
//user_pref("widget.gtk.hide-pointer-while-typing.enabled", false);
|
||||||
|
|
||||||
// PREF: limit events that can cause a pop-up
|
// PREF: limit events that can cause a pop-up
|
||||||
// Firefox provides an option to provide exceptions for sites, remembered in your Site Settings.
|
// Firefox provides an option to provide exceptions for sites, remembered in your Site Settings.
|
||||||
// (default) "change click dblclick auxclick mouseup pointerup notificationclick reset submit touchend contextmenu"
|
// (default) "change click dblclick auxclick mouseup pointerup notificationclick reset submit touchend contextmenu"
|
||||||
@@ -431,6 +505,9 @@ user_pref("findbar.highlightAll", true);
|
|||||||
//user_pref("dom.disable_open_during_load", true); // DEFAULT
|
//user_pref("dom.disable_open_during_load", true); // DEFAULT
|
||||||
//user_pref("privacy.popups.showBrowserMessage", true); // DEFAULT
|
//user_pref("privacy.popups.showBrowserMessage", true); // DEFAULT
|
||||||
|
|
||||||
|
// PREF: enable Tab Preview [FF122+]
|
||||||
|
//user_pref("browser.tabs.cardPreview.enabled", true);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: UNCATEGORIZED *
|
* SECTION: UNCATEGORIZED *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
@@ -440,17 +517,19 @@ user_pref("findbar.highlightAll", true);
|
|||||||
//user_pref("browser.backspace_action", 2); // DEFAULT
|
//user_pref("browser.backspace_action", 2); // DEFAULT
|
||||||
|
|
||||||
// PREF: disable Reader mode
|
// PREF: disable Reader mode
|
||||||
|
// [TIP] Use about:reader?url=%s as a keyword to open links automatically in reader mode [1].
|
||||||
// Firefox will not have to parse webpage for Reader when navigating.
|
// Firefox will not have to parse webpage for Reader when navigating.
|
||||||
// Extremely minimal performance impact, if you enable.
|
// Extremely minimal performance impact, if you disable.
|
||||||
|
// [1] https://www.reddit.com/r/firefox/comments/621sr2/i_found_out_how_to_automatically_open_a_url_in/
|
||||||
//user_pref("reader.parse-on-load.enabled", false);
|
//user_pref("reader.parse-on-load.enabled", false);
|
||||||
|
|
||||||
// PREF: disable ALT key toggling the menu bar
|
// PREF: disable ALT key toggling the menu bar
|
||||||
//user_pref("ui.key.menuAccessKeyFocuses", false);
|
//user_pref("ui.key.menuAccessKeyFocuses", false);
|
||||||
//user_pref("ui.key.menuAccessKey", 18); // DEFAULT
|
//user_pref("ui.key.menuAccessKey", 18); // DEFAULT
|
||||||
|
|
||||||
// PREF: CTRL+TAB cycles tabs in chronological order instead of
|
// PREF: cycle through tabs in recently used order
|
||||||
// recently-used order
|
// [SETTING] Ctrl+Tab cycles through tabs in recently used order
|
||||||
//user_pref("browser.ctrlTab.recentlyUsedOrder", false);
|
//user_pref("browser.ctrlTab.sortByRecentlyUsed", true);
|
||||||
|
|
||||||
// PREF: Spell-check
|
// PREF: Spell-check
|
||||||
// 0=none, 1-multi-line, 2=multi-line & single-line
|
// 0=none, 1-multi-line, 2=multi-line & single-line
|
||||||
@@ -509,11 +588,18 @@ user_pref("findbar.highlightAll", true);
|
|||||||
|
|
||||||
// PREF: JPEG XL image format [NIGHTLY]
|
// PREF: JPEG XL image format [NIGHTLY]
|
||||||
// May not affect anything on ESR/Stable channel [2].
|
// May not affect anything on ESR/Stable channel [2].
|
||||||
|
// [TEST] https://jpegxl.io/tutorials/firefox/#firefoxjpegxltutorial
|
||||||
// [1] https://cloudinary.com/blog/the-case-for-jpeg-xl
|
// [1] https://cloudinary.com/blog/the-case-for-jpeg-xl
|
||||||
// [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1539075
|
// [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1539075#c51
|
||||||
//user_pref("image.jxl.enabled", true);
|
//user_pref("image.jxl.enabled", true);
|
||||||
|
|
||||||
// PREF: enable CSS moz document rules
|
// PREF: enable CSS moz document rules
|
||||||
// Still needed for Stylus?
|
// Still needed for Stylus?
|
||||||
// [1] https://reddit.com/r/FirefoxCSS/comments/8x2q97/reenabling_mozdocument_rules_in_firefox_61/
|
// [1] https://reddit.com/r/FirefoxCSS/comments/8x2q97/reenabling_mozdocument_rules_in_firefox_61/
|
||||||
//user_pref("layout.css.moz-document.content.enabled", true);
|
//user_pref("layout.css.moz-document.content.enabled", true);
|
||||||
|
|
||||||
|
// PREF: always underline links [FF120+]
|
||||||
|
//user_pref("layout.css.always_underline_links", false); // DEFAULT
|
||||||
|
|
||||||
|
// PREF: hide frequent sites on right-click of taskbar icon [WINDOWS?]
|
||||||
|
//user_pref("browser.taskbar.lists.frequent.enabled", false);
|
||||||
|
|||||||
@@ -2,13 +2,34 @@
|
|||||||

|

|
||||||
[](https://hits.seeyoufarm.com)
|
[](https://hits.seeyoufarm.com)
|
||||||
|
|
||||||
# Betterfox :fox_face:
|
# Betterfox
|
||||||
[`about:config`](https://kb.mozillazine.org/About:config) tweaks to enhance [Mozilla Firefox](https://www.mozilla.org/en-US/firefox/new/ "Firefox Homepage"). Files are updated as needed for your [user.js](https://kb.mozillazine.org/User.js_file#About_the_user.js_file).
|
31% faster than regular Firefox<sup>[1](https://medium.com/@mihirgrand/comparing-popular-firefox-forks-6fa83fdfdaad#:~:text=31%25%20more%20than%20vanilla%20Firefox)</sup> :rocket:
|
||||||
|
|
||||||
|
[about:config](https://support.mozilla.org/en-US/kb/about-config-editor-firefox) tweaks to enhance [Mozilla Firefox](https://www.mozilla.org/en-US/firefox/new/).
|
||||||
|
|
||||||
|
:new: Now with [ESR support](https://github.com/yokoffing/Betterfox/tree/esr115#betterfox-esr).
|
||||||
|
|
||||||
## Made for everyday browsing
|
## Made for everyday browsing
|
||||||
**A secure, blazing fast browsing experience. Without breakage.**
|
**A secure, blazing fast browsing experience. Without breakage.**
|
||||||
|
|
||||||
Betterfox is an opinionated preference list inspired by the [law of diminishing returns](https://pmctraining.com/site/wp-content/uploads/2018/04/Law-of-Diminishing-Returns-CHART.png) and the [minimum effective dose](https://medium.com/the-mission/less-is-more-the-minimum-effective-dose-e6d56625931e).
|
Betterfox is an opinionated preference list inspired by the [law of diminishing returns](https://web.archive.org/web/20231108092752if_/https://pmctraining.com/site/wp-content/uploads/2018/04/Law-of-Diminishing-Returns-CHART.png) and the [minimum effective dose](https://medium.com/the-mission/less-is-more-the-minimum-effective-dose-e6d56625931e).
|
||||||
|
|
||||||
|
## Required reading
|
||||||
|
*If you don't have it already: [Get Firefox](https://www.mozilla.org/en-US/firefox/all/#product-desktop-release)*
|
||||||
|
|
||||||
|
0) Create a [backup profile](https://github.com/yokoffing/Betterfox/wiki/Backup).
|
||||||
|
1) Download the user.js file [here](https://raw.githubusercontent.com/yokoffing/Betterfox/main/user.js) (Right click > `Save Link As…`).
|
||||||
|
2) Review [Common Overrides](https://github.com/yokoffing/Betterfox/wiki/Common-Overrides) and make any necessary changes.
|
||||||
|
* See also [Optional Hardening](https://github.com/yokoffing/Betterfox/wiki/Optional-Hardening) for other recommendations.
|
||||||
|
3) Open Firefox. In the URL bar, type `about:profiles` and press **Enter**.
|
||||||
|
4) For the profile you want to use (or use default), click **Open Folder** in the **Root Directory** section.
|
||||||
|
5) Move the `user.js` file into the folder.
|
||||||
|
|
||||||
|
*After restarting Firefox:*
|
||||||
|
1) Get an **ad blocker** like [uBlock Origin](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) with our [recommended filters](https://github.com/yokoffing/filterlists#guidelines).
|
||||||
|
2) Enable **DNS-level protection** with [NextDNS](https://nextdns.io/?from=xujj63g5). <sup><i>Use the link and support this page!</i></sup>
|
||||||
|
* Check out our configuration [guide](https://github.com/yokoffing/NextDNS-Config) for the best experience.
|
||||||
|
* See how to [quickly enable](https://support.mozilla.org/en-US/kb/dns-over-https) **secure DNS** in Firefox.
|
||||||
|
|
||||||
## Simple goals
|
## Simple goals
|
||||||
1) **Minimalism:** get what isn't needed out of the way
|
1) **Minimalism:** get what isn't needed out of the way
|
||||||
@@ -17,46 +38,25 @@ Betterfox is an opinionated preference list inspired by the [law of diminishing
|
|||||||
|
|
||||||
## Simple configs
|
## Simple configs
|
||||||
|
|
||||||
|
`Fastfox`, `Securefox`, `Peskyfox`, and `Smoothfox` are guides to settings within Firefox.
|
||||||
|
|
||||||
|
The `user.js` — a configuration file that controls Firefox settings — is curated from these guides.
|
||||||
|
|
||||||
| List | Description |
|
| List | Description |
|
||||||
|:---------:|-------------|
|
|:---------:|-------------|
|
||||||
| [Fastfox](https://github.com/yokoffing/Betterfox/blob/main/Fastfox.js) | Immensely increase Firefox's browsing speed. Give Chrome a run for its money!|
|
| [Fastfox](https://github.com/yokoffing/Betterfox/blob/main/Fastfox.js) | Increase Firefox's browsing speed. Give Chrome a run for its money!|
|
||||||
| [Securefox](https://github.com/yokoffing/Betterfox/blob/main/Securefox.js) | [Global Privacy Control](https://blog.mozilla.org/netpolicy/2021/10/28/implementing-global-privacy-control/). [HTTPS-by-Default](https://blog.mozilla.org/security/2021/08/10/firefox-91-introduces-https-by-default-in-private-browsing/). [Total Cookie Protection](https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/) with [site isolation](https://blog.mozilla.org/security/2021/05/18/introducing-site-isolation-in-firefox/). Enhanced [state](https://developer.mozilla.org/en-US/docs/Web/Privacy/State_Partitioning) and [network](https://blog.mozilla.org/security/2021/01/26/supercookie-protections/) partitioning. [Telemetry](https://github.com/yokoffing/Betterfox/blob/e66a549985f6b0db4b14226904b8c09eaaea998f/Securefox.js#L1262-L1265) disabled. |
|
| [Securefox](https://github.com/yokoffing/Betterfox/blob/main/Securefox.js) | Protect user data without causing site breakage. |
|
||||||
| [Peskyfox](https://github.com/yokoffing/Betterfox/blob/main/Peskyfox.js) | Unclutter the new tab page. Remove [Pocket](https://support.mozilla.org/en-US/kb/what-pocket). Restore [compact mode](https://support.mozilla.org/en-US/kb/compact-mode-workaround-firefox) as an option. Stop webpage notifications, pop-ups, and other annoyances. |
|
| [Peskyfox](https://github.com/yokoffing/Betterfox/blob/main/Peskyfox.js) | Provide a clean, distraction-free browsing experience. |
|
||||||
| [Smoothfox](https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js) | Get Edge-like smooth scrolling on your favorite browser — or choose something more your style. |
|
| [Smoothfox](https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js) | Get Edge-like smooth scrolling on your favorite browser — or choose something more your style. |
|
||||||
| [user.js](https://github.com/yokoffing/Betterfox/blob/main/user.js) | All the essentials. None of the breakage. This is your `user.js`. |
|
| [user.js](https://github.com/yokoffing/Betterfox/blob/main/user.js) | All the essentials. None of the breakage. This is your `user.js`. |
|
||||||
|
|
||||||
:bulb: `Fastfox`, `Securefox`, `Peskyfox`, and `Smoothfox` are guides to relevant prefs in Firefox. The `user.js` is curated from the options located in these documents. Please read the guides to understand the various options hidden in Firefox.
|
|
||||||
|
|
||||||
While Betterfox is designed to [set-and-forget](https://glosbe.com/en/en/set-and-forget), it contains plenty of options for those who like to tinker.
|
|
||||||
|
|
||||||
## about:Defaults
|
|
||||||
Easily adjust features by copying + pasting prefs to your personal file :thumbsup:
|
|
||||||
|
|
||||||
Check out [Common Overrides](https://github.com/yokoffing/Betterfox/wiki/Overrides) to customize your setup.
|
|
||||||
|
|
||||||
## about:Privacy
|
|
||||||
Betterfox is already a great balance of privacy and convenience. However, you can still play with a few settings.
|
|
||||||
|
|
||||||
See [Optional Hardening](https://github.com/yokoffing/Betterfox/wiki/Optional-Hardening) for suggestions.
|
|
||||||
|
|
||||||
## Getting started
|
|
||||||
*If you don't have it already: [Get Firefox](https://www.mozilla.org/en-US/firefox/all/#product-desktop-release)*
|
|
||||||
|
|
||||||
1) Download the user.js file [here](https://raw.githubusercontent.com/yokoffing/Betterfox/main/user.js) (Right click > `Save Link As…`).
|
|
||||||
2) Open Firefox. In the URL bar, type `about:profiles` and press `Enter`.
|
|
||||||
3) For the profile you want to use (or default), click `Open Folder` in the **Root Directory** section.
|
|
||||||
4) Close Firefox. With the folder open, move the `user.js` file into the folder.
|
|
||||||
|
|
||||||
*After restarting Firefox:*
|
|
||||||
1) Get an **ad blocker** like [uBlock Origin](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) with our [recommended filters](https://github.com/yokoffing/filterlists#guidelines). For a simple solution, use [Ghostery](https://addons.mozilla.org/en-US/firefox/addon/ghostery/).
|
|
||||||
3) Enable **DNS-level protection** with [NextDNS](https://nextdns.io/?from=xujj63g5), and check out our configuration [guide](https://github.com/yokoffing/NextDNS-Config).
|
|
||||||
* See how to [quickly enable](https://support.mozilla.org/en-US/kb/dns-over-https) **secure DNS** in Firefox.
|
|
||||||
|
|
||||||
## Recognition
|
## Recognition
|
||||||
|
|
||||||
### Browser Integration
|
### Browser Integration
|
||||||
* [Waterfox](https://github.com/WaterfoxCo/Waterfox/commit/735d8067b06cca00b9b04b5a6bcd0c1414118f95) | [files](https://github.com/WaterfoxCo/Waterfox/tree/future/waterfox/browser/app/profile) (August 2023)
|
* [Midori](https://github.com/goastian/midori-desktop/blob/ESR115/README.md) | [files](https://github.com/goastian/midori-desktop/blob/f3d8d96eb8e08f35a64e3c957bea4e839d7c7730/floorp/browser/components/userjsUtils.sys.mjs#L28-L33) (Dec 2023?)
|
||||||
* [Floorp](https://github.com/Floorp-Projects/Floorp#-betterfox) <sup>[1](https://github.com/Floorp-Projects/Floorp/issues/233#issuecomment-1543557167) [2](https://blog.ablaze.one/3135/2023-04-01/)</sup> | [files](https://github.com/Floorp-Projects/Floorp/blob/f63e87016d88535aafa2b57d690442b9a69cbaa5/toolkit/content/license.html#L200-L224) (April 2023)
|
* [Mercury](https://github.com/Alex313031/Mercury/releases/tag/v.115.3.0) | [files](https://github.com/Alex313031/Mercury/commit/eb9600f9fb8f48c8f5b5c6f3264fbcdb5caff7f5) (Sep 2023)
|
||||||
|
* [Waterfox](https://www.waterfox.net/en-US/docs/releases/G6.0/) | [files](https://github.com/WaterfoxCo/Waterfox/tree/current/waterfox/browser/app/profile) (Sep 2023)
|
||||||
|
* [Floorp](https://github.com/Floorp-Projects/Floorp#-betterfox) <sup>[1](https://github.com/Floorp-Projects/Floorp/issues/233#issuecomment-1543557167) [2](https://blog.ablaze.one/3135/2023-04-01/)</sup> | [files](https://github.com/Floorp-Projects/Floorp/blob/ESR115/floorp/browser/components/preferences/userjs.inc.xhtml) (Apr 2023)
|
||||||
* [Pulse](https://github.com/pulse-browser/browser#%EF%B8%8F-credits) | [files](https://github.com/pulse-browser/browser/tree/alpha/src/browser/app/profile) (Dec 2021)
|
* [Pulse](https://github.com/pulse-browser/browser#%EF%B8%8F-credits) | [files](https://github.com/pulse-browser/browser/tree/alpha/src/browser/app/profile) (Dec 2021)
|
||||||
* [Ghostery Private Browser](https://github.com/ghostery/user-agent-desktop#community) <sup>[1](https://web.archive.org/web/20210509171835/https://www.ghostery.com/ghostery-dawn-update-more/) [2](https://web.archive.org/web/20210921114333/https://www.ghostery.com/ghostery-dawn-product-update/)</sup> | [files](https://github.com/ghostery/user-agent-desktop/tree/main/brands/ghostery/branding/pref) (Feb 2021)
|
* [Ghostery Private Browser](https://github.com/ghostery/user-agent-desktop#community) <sup>[1](https://web.archive.org/web/20210509171835/https://www.ghostery.com/ghostery-dawn-update-more/) [2](https://web.archive.org/web/20210921114333/https://www.ghostery.com/ghostery-dawn-product-update/)</sup> | [files](https://github.com/ghostery/user-agent-desktop/tree/main/brands/ghostery/branding/pref) (Feb 2021)
|
||||||
|
|
||||||
@@ -71,7 +71,9 @@ See [Optional Hardening](https://github.com/yokoffing/Betterfox/wiki/Optional-Ha
|
|||||||
* [GhoSTORIES with Franz & Pete](https://anchor.fm/ghostories/episodes/S2E6-We-Talking-Ghostery-Dawn----Again-er0q02/a-a4o5vmh) | 17:05–18:40 (Feb 2021)
|
* [GhoSTORIES with Franz & Pete](https://anchor.fm/ghostories/episodes/S2E6-We-Talking-Ghostery-Dawn----Again-er0q02/a-a4o5vmh) | 17:05–18:40 (Feb 2021)
|
||||||
|
|
||||||
### Articles
|
### Articles
|
||||||
* [German] [Pulse Browser Review: Firefox fork with Turbo tweaks and Opera sidebar](https://www.computerbild.de/artikel/cb-Tipps-Software-Pulse-Browser-Review-ein-Firefox-Fork-mit-Seitenleiste-wie-bei-Opera-35644139.html#:~:text=Noch%20mehr%20Speed%2DFeatures) (April 2023)
|
* [Browsers for Daily Using](https://anhkhoakz.neocities.org/blog/browsers-for-daily-using) (Jan 2024)
|
||||||
|
* [Avoiding Manifest V3 – Escaping the Ad-Pocalypse](https://www.xbitlabs.com/avoiding-manifest-v3/) (Dec 2023)
|
||||||
|
* [German] [Pulse Browser Review: Firefox fork with Turbo tweaks and Opera sidebar](https://www.computerbild.de/artikel/cb-Tipps-Software-Pulse-Browser-Review-ein-Firefox-Fork-mit-Seitenleiste-wie-bei-Opera-35644139.html#:~:text=Noch%20mehr%20Speed%2DFeatures) (Apr 2023)
|
||||||
* [2023 Browser Showdown: Comparing Chrome, Brave, Firefox, Vivaldi, and Opera](https://www.appdate.lk/technology/2023-browser-showdown/) (Jan 2023)
|
* [2023 Browser Showdown: Comparing Chrome, Brave, Firefox, Vivaldi, and Opera](https://www.appdate.lk/technology/2023-browser-showdown/) (Jan 2023)
|
||||||
|
|
||||||
### Guides
|
### Guides
|
||||||
@@ -84,24 +86,24 @@ See [Optional Hardening](https://github.com/yokoffing/Betterfox/wiki/Optional-Ha
|
|||||||
* “I use this one ... The performance is absolutely amazing. There’s definitely a huge difference when it comes to loading sites.” - [DIRIKtv](https://youtu.be/N8IOJiOFVEk?t=16)
|
* “I use this one ... The performance is absolutely amazing. There’s definitely a huge difference when it comes to loading sites.” - [DIRIKtv](https://youtu.be/N8IOJiOFVEk?t=16)
|
||||||
* "BetterFox ... will provide good-enough privacy and help with performance." - [Qdoit12Super](https://old.reddit.com/r/browsers/comments/139h4my/suggestion_for_finding_3_good_privacy_focus/jj3n3qn/?context=2)
|
* "BetterFox ... will provide good-enough privacy and help with performance." - [Qdoit12Super](https://old.reddit.com/r/browsers/comments/139h4my/suggestion_for_finding_3_good_privacy_focus/jj3n3qn/?context=2)
|
||||||
* "...drastically changed the experience with Firefox for me. Improved speed, security, smoothness, and removed clutter." - [AppDate](https://www.appdate.lk/technology/2023-browser-showdown/#:~:text=Used%20the%20BetterFox%20user%20config%20settings%20with%20some%20overrides%20which%20drastically%20changed%20the%20experience)
|
* "...drastically changed the experience with Firefox for me. Improved speed, security, smoothness, and removed clutter." - [AppDate](https://www.appdate.lk/technology/2023-browser-showdown/#:~:text=Used%20the%20BetterFox%20user%20config%20settings%20with%20some%20overrides%20which%20drastically%20changed%20the%20experience)
|
||||||
* "FF is now much snappier! Thanks a lot for the suggestions!" - [whotheff](https://old.reddit.com/r/firefox/comments/z5auzi/firefox_not_properly_usingrecognizing_gpu_poor/iy36hyz/)
|
* "Firefox with uBlock Origin extension and tuned with Betterfox is faster than Safari." - [cugeloid](https://elephas.app/blog/best-browsers-mac#what-is-the-best-browser-for-mac-according-to-redditandnbsp)
|
||||||
* "...a good balance between privacy and convenience." - [Radplay](https://old.reddit.com/r/firefox/comments/115va7d/list_of_aboutconfiguserjs_privacy_tweaks/j9700bc/?context=2)
|
* "I don't think I could use Firefox without Betterfox." - [Professional_Fun4616](https://old.reddit.com/r/nextdns/comments/15y815f/the_people_behind_betterfox_have_this_awesome/jxb7cir/?context=3)
|
||||||
* "The best collection of tweaks available ... doesn't go crazy with privacy/security hardening that completely breaks the usability of Firefox for most users." - [AuRiMaS](https://old.reddit.com/r/MozillaFirefox/comments/15cc1vk/about_changes_in_aboutconfig/jtyx910/?context=3)
|
* "The best collection of tweaks available." - [AuRiMaS](https://old.reddit.com/r/MozillaFirefox/comments/15cc1vk/about_changes_in_aboutconfig/jtyx910/?context=3)
|
||||||
|
* "FF is now much snappier!" - [whotheff](https://old.reddit.com/r/firefox/comments/z5auzi/firefox_not_properly_usingrecognizing_gpu_poor/iy36hyz/)
|
||||||
* "...the experience is so good now I don’t think I’ll go back to any of the chromium based browsers." - [Mr_Compromise](https://old.reddit.com/r/pcmasterrace/comments/zwioe1/what_browser_will_you_be_using_in_2023_please/j1wmbxo/)
|
* "...the experience is so good now I don’t think I’ll go back to any of the chromium based browsers." - [Mr_Compromise](https://old.reddit.com/r/pcmasterrace/comments/zwioe1/what_browser_will_you_be_using_in_2023_please/j1wmbxo/)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
If you like the project and benefit from it, leave a :star: (top right) and become a [stargazer](https://github.com/yokoffing/Betterfox/stargazers)!
|
If you like the project, leave a :star: (top right) and become a [stargazer](https://github.com/yokoffing/Betterfox/stargazers)!
|
||||||
|
|
||||||
[](https://github.com/yokoffing/Betterfox/stargazers)
|
[](https://github.com/yokoffing/Betterfox/stargazers)
|
||||||
|
|
||||||
|
<a href='https://ko-fi.com/Q5Q5G8EPH' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi2.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
||||||
|
<noscript><a href="https://liberapay.com/yokoffing/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></noscript>
|
||||||
|
|
||||||
## Credit
|
## Credit
|
||||||
<div>
|
* Betterfox mirrors the ongoing work provided by [arkenfox](https://github.com/arkenfox/user.js). Additionally, this repository includes content reproduced or adapted from other sources. Credit for overlapping material goes to the original authors.
|
||||||
<img align="right" src="https://media.tenor.com/m_knf6IKaJwAAAAC/hi-fox.gif" width="110" height="120"/>
|
* Appreciation goes to the [Firefox](https://www.mozilla.org/en-US/firefox/new/) team and developers working on [Bugzilla](https://bugzilla.mozilla.org/home), fighting for the open web.
|
||||||
</div>
|
|
||||||
|
|
||||||
* This repository benefits from the ongoing research provided by [arkenfox](https://github.com/arkenfox/user.js).
|
|
||||||
* Appreciation goes to the [Firefox](https://www.mozilla.org/en-US/firefox/new/) team and the developers working on [Bugzilla](https://bugzilla.mozilla.org/home), fighting for the open web.
|
|
||||||
* A special thanks to [Alex Kontos](https://github.com/MrAlex94) of [Waterfox](https://github.com/WaterfoxCo/Waterfox) for his collaboration in v.116.
|
* A special thanks to [Alex Kontos](https://github.com/MrAlex94) of [Waterfox](https://github.com/WaterfoxCo/Waterfox) for his collaboration in v.116.
|
||||||
* Many thanks to the 2021 [Ghostery](https://github.com/ghostery) team for testing Betterfox at scale in its early days.
|
* Many thanks to the 2021 [Ghostery](https://github.com/ghostery) team for testing Betterfox at scale in its early days.
|
||||||
|
|
||||||
|
|||||||
+539
-351
File diff suppressed because it is too large
Load Diff
+38
-16
@@ -1,43 +1,65 @@
|
|||||||
|
|
||||||
/****************************************************************************************
|
/****************************************************************************************
|
||||||
* Smoothfox *
|
* Smoothfox *
|
||||||
* "Faber est suae quisque fortunae" *
|
* "Faber est suae quisque fortunae" *
|
||||||
* priority: better scrolling *
|
* priority: better scrolling *
|
||||||
* version: July 2023 *
|
* version: 126.1 *
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
* url: https://github.com/yokoffing/Betterfox *
|
||||||
***************************************************************************************/
|
***************************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************************
|
// Use only one option at a time!
|
||||||
* OPTION 1: INSTANT SCROLLING (SIMPLE ADJUSTMENT) *
|
// Reset prefs if you decide to use different option.
|
||||||
****************************************************************************************/
|
|
||||||
// recommended for 60hz+ displays
|
|
||||||
user_pref("apz.overscroll.enabled", true); // not DEFAULT on Linux
|
|
||||||
user_pref("general.smoothScroll", true); // DEFAULT
|
|
||||||
user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400; adjust this number to your liking
|
|
||||||
|
|
||||||
/****************************************************************************************
|
/****************************************************************************************
|
||||||
* OPTION 2: SMOOTH SCROLLING *
|
* OPTION: SHARPEN SCROLLING *
|
||||||
|
****************************************************************************************/
|
||||||
|
// credit: https://github.com/black7375/Firefox-UI-Fix
|
||||||
|
// only sharpen scrolling
|
||||||
|
user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
|
||||||
|
user_pref("general.smoothScroll", true); // DEFAULT
|
||||||
|
user_pref("mousewheel.min_line_scroll_amount", 10); // 10-40; adjust this number to your liking; default=5
|
||||||
|
user_pref("general.smoothScroll.mouseWheel.durationMinMS", 80); // default=50
|
||||||
|
user_pref("general.smoothScroll.currentVelocityWeighting", "0.15"); // default=.25
|
||||||
|
user_pref("general.smoothScroll.stopDecelerationWeighting", "0.6"); // default=.4
|
||||||
|
// Firefox Nightly only:
|
||||||
|
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1846935
|
||||||
|
user_pref("general.smoothScroll.msdPhysics.enabled", false); // [FF122+ Nightly]
|
||||||
|
|
||||||
|
/****************************************************************************************
|
||||||
|
* OPTION: INSTANT SCROLLING (SIMPLE ADJUSTMENT) *
|
||||||
|
****************************************************************************************/
|
||||||
|
// recommended for 60hz+ displays
|
||||||
|
user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
|
||||||
|
user_pref("general.smoothScroll", true); // DEFAULT
|
||||||
|
user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400; adjust this number to your liking
|
||||||
|
// Firefox Nightly only:
|
||||||
|
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1846935
|
||||||
|
user_pref("general.smoothScroll.msdPhysics.enabled", false); // [FF122+ Nightly]
|
||||||
|
|
||||||
|
/****************************************************************************************
|
||||||
|
* OPTION: SMOOTH SCROLLING *
|
||||||
****************************************************************************************/
|
****************************************************************************************/
|
||||||
// recommended for 90hz+ displays
|
// recommended for 90hz+ displays
|
||||||
user_pref("apz.overscroll.enabled", true); // not DEFAULT on Linux
|
user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
|
||||||
user_pref("general.smoothScroll", true); // DEFAULT
|
user_pref("general.smoothScroll", true); // DEFAULT
|
||||||
user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
||||||
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
|
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
|
||||||
|
|
||||||
/****************************************************************************************
|
/****************************************************************************************
|
||||||
* OPTION 3: NATURAL SMOOTH SCROLLING V3 [MODIFIED] *
|
* OPTION: NATURAL SMOOTH SCROLLING V3 [MODIFIED] *
|
||||||
****************************************************************************************/
|
****************************************************************************************/
|
||||||
|
// credit: https://github.com/AveYo/fox/blob/cf56d1194f4e5958169f9cf335cd175daa48d349/Natural%20Smooth%20Scrolling%20for%20user.js
|
||||||
// recommended for 120hz+ displays
|
// recommended for 120hz+ displays
|
||||||
// largely matches Chrome flags: Windows Scrolling Personality and Smooth Scrolling
|
// largely matches Chrome flags: Windows Scrolling Personality and Smooth Scrolling
|
||||||
// from https://github.com/AveYo/fox/blob/cf56d1194f4e5958169f9cf335cd175daa48d349/Natural%20Smooth%20Scrolling%20for%20user.js
|
user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
|
||||||
user_pref("apz.overscroll.enabled", true); // not DEFAULT on Linux
|
|
||||||
user_pref("general.smoothScroll", true); // DEFAULT
|
user_pref("general.smoothScroll", true); // DEFAULT
|
||||||
user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12);
|
user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12);
|
||||||
user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
||||||
user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
|
user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
|
||||||
user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650);
|
user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650);
|
||||||
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25);
|
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25);
|
||||||
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", 2.0);
|
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", "2");
|
||||||
user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250);
|
user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250);
|
||||||
user_pref("general.smoothScroll.currentVelocityWeighting", 1.0);
|
user_pref("general.smoothScroll.currentVelocityWeighting", "1");
|
||||||
user_pref("general.smoothScroll.stopDecelerationWeighting", 1.0);
|
user_pref("general.smoothScroll.stopDecelerationWeighting", "1");
|
||||||
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
|
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
|
||||||
|
|||||||
+12
-9
@@ -8,14 +8,18 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Betterfox - LibreWolf overrides (beta) *
|
* Betterfox - LibreWolf overrides *
|
||||||
* Quis custodiet ipsos custodes *
|
* Quis custodiet ipsos custodes *
|
||||||
* version: November 2022 *
|
* version: August 2023 *
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
* url: https://github.com/yokoffing/Betterfox *
|
||||||
* license: https://github.com/yokoffing/Betterfox/blob/master/LICENSE *
|
* license: https://github.com/yokoffing/Betterfox/blob/main/LICENSE *
|
||||||
* README: https://github.com/yokoffing/Betterfox/blob/master/README.md *
|
* README: https://github.com/yokoffing/Betterfox/blob/main/README.md *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
// Better off just using a user.js file:
|
||||||
|
// [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41963
|
||||||
|
// [2] https://github.com/arkenfox/user.js/issues/1695#issuecomment-1666505218
|
||||||
|
|
||||||
// Where do I find my librewolf.overrides.cfg? https://librewolf.net/docs/settings/#where-do-i-find-my-librewolfoverridescfg
|
// Where do I find my librewolf.overrides.cfg? https://librewolf.net/docs/settings/#where-do-i-find-my-librewolfoverridescfg
|
||||||
// LibreWolf default prefs: https://gitlab.com/librewolf-community/settings/-/blob/master/librewolf.cfg
|
// LibreWolf default prefs: https://gitlab.com/librewolf-community/settings/-/blob/master/librewolf.cfg
|
||||||
|
|
||||||
@@ -24,13 +28,11 @@
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
defaultPref("layout.css.grid-template-masonry-value.enabled", true);
|
defaultPref("layout.css.grid-template-masonry-value.enabled", true);
|
||||||
defaultPref("dom.enable_web_task_scheduling", true);
|
defaultPref("dom.enable_web_task_scheduling", true);
|
||||||
defaultPref("layout.css.animation-composition.enabled", true);
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: SECUREFOX *
|
* SECTION: SECUREFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
/** TRACKING PROTECTION ***/
|
/** TRACKING PROTECTION ***/
|
||||||
defaultPref("privacy.trackingprotection.emailtracking.enabled", true);
|
|
||||||
defaultPref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com");
|
defaultPref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com");
|
||||||
defaultPref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
defaultPref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
||||||
|
|
||||||
@@ -76,7 +78,6 @@ defaultPref("dom.push.enabled", false);
|
|||||||
defaultPref("layout.css.prefers-color-scheme.content-override", 2);
|
defaultPref("layout.css.prefers-color-scheme.content-override", 2);
|
||||||
defaultPref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
defaultPref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
||||||
defaultPref("browser.compactmode.show", true);
|
defaultPref("browser.compactmode.show", true);
|
||||||
defaultPref("findbar.highlightAll", true);
|
|
||||||
|
|
||||||
/** FULLSCREEN ***/
|
/** FULLSCREEN ***/
|
||||||
defaultPref("full-screen-api.transition-duration.enter", "0 0");
|
defaultPref("full-screen-api.transition-duration.enter", "0 0");
|
||||||
@@ -94,6 +95,9 @@ defaultPref("browser.urlbar.unitConversion.enabled", true);
|
|||||||
// Default breaks some video players
|
// Default breaks some video players
|
||||||
defaultPref("media.autoplay.blocking_policy", 0);
|
defaultPref("media.autoplay.blocking_policy", 0);
|
||||||
|
|
||||||
|
/** PASSWORDS ***/
|
||||||
|
defaultPref("editor.truncate_user_pastes", false);
|
||||||
|
|
||||||
/** DOWNLOADS ***/
|
/** DOWNLOADS ***/
|
||||||
defaultPref("browser.download.autohideButton", true);
|
defaultPref("browser.download.autohideButton", true);
|
||||||
|
|
||||||
@@ -103,8 +107,7 @@ defaultPref("browser.download.open_pdf_attachments_inline", true);
|
|||||||
/** TAB BEHAVIOR ***/
|
/** TAB BEHAVIOR ***/
|
||||||
defaultPref("browser.tabs.loadBookmarksInTabs", true);
|
defaultPref("browser.tabs.loadBookmarksInTabs", true);
|
||||||
defaultPref("browser.bookmarks.openInTabClosesMenu", false);
|
defaultPref("browser.bookmarks.openInTabClosesMenu", false);
|
||||||
defaultPref("editor.truncate_user_pastes", false);
|
defaultPref("findbar.highlightAll", true);
|
||||||
defaultPref("clipboard.plainTextOnly", true);
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* END: BETTERFOX *
|
* END: BETTERFOX *
|
||||||
|
|||||||
@@ -14,109 +14,124 @@
|
|||||||
* START: MY OVERRIDES *
|
* START: MY OVERRIDES *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
/** SETUP ON FIRST INSTALLATION ***/
|
||||||
|
//user_pref("network.trr.uri", "https://dns.nextdns.io/******/Firefox"); // TRR/DoH
|
||||||
|
|
||||||
/** FASTFOX ***/
|
/** FASTFOX ***/
|
||||||
user_pref("browser.sessionstore.restore_pinned_tabs_on_demand", true);
|
user_pref("browser.sessionstore.restore_pinned_tabs_on_demand", true);
|
||||||
user_pref("browser.sessionstore.interval", 50000); // 5 min.; set minimum interval between session save operations
|
user_pref("browser.sessionhistory.max_total_viewers", 4); // only remember # of pages in Back-Forward cache
|
||||||
user_pref("media.av1.enabled", false); // disable AV1 to force video hardware decoding
|
user_pref("browser.cache.disk.enable", false); // disable disk cache
|
||||||
user_pref("network.http.pacing.requests.min-parallelism", 18); // default=6
|
|
||||||
user_pref("network.dnsCacheEntries", 20000); // maximum # of DNS entries
|
|
||||||
//user_pref("network.dnsCacheExpiration", 86400); // keep DNS entries for 24 hours
|
|
||||||
//user_pref("network.dnsCacheExpirationGracePeriod", 240); // 4 minutes
|
|
||||||
user_pref("network.http.speculative-parallel-limit", 18); // default=6
|
|
||||||
user_pref("network.dns.disablePrefetch", false);
|
|
||||||
user_pref("network.dns.disablePrefetchFromHTTPS", false);
|
|
||||||
user_pref("network.early-hints.enabled", true);
|
|
||||||
user_pref("network.early-hints.preconnect.enabled", true);
|
|
||||||
user_pref("network.early-hints.preconnect.max_connections", 20); // Nightly=10
|
|
||||||
user_pref("network.prefetch-next", true);
|
|
||||||
user_pref("network.predictor.enabled", true);
|
|
||||||
user_pref("network.predictor.enable-prefetch", true);
|
|
||||||
user_pref("network.predictor.enable-hover-on-ssl", true);
|
|
||||||
user_pref("network.predictor.preresolve-min-confidence", 10);
|
|
||||||
user_pref("network.predictor.preconnect-min-confidence", 20);
|
|
||||||
user_pref("network.predictor.prefetch-min-confidence", 30);
|
|
||||||
user_pref("network.predictor.prefetch-force-valid-for", 3600);
|
|
||||||
user_pref("network.predictor.prefetch-rolling-load-count", 120);
|
|
||||||
user_pref("network.predictor.max-resources-per-entry", 250);
|
|
||||||
user_pref("network.predictor.max-uri-length", 1000);
|
|
||||||
|
|
||||||
/** SECUREFOX ***/
|
/** SECUREFOX ***/
|
||||||
|
//user_pref("urlclassifier.features.socialtracking.skipURLs", "*.twitter.com, *.twimg.com"); // removed *.instagram.com
|
||||||
|
user_pref("signon.rememberSignons", false); // disable password manager
|
||||||
|
user_pref("extensions.formautofill.addresses.enabled", false); // disable address manager
|
||||||
|
user_pref("extensions.formautofill.creditCards.enabled", false); // disable credit card manager
|
||||||
user_pref("browser.urlbar.showSearchSuggestionsFirst", false); // unselect "Show search suggestions ahead of browsing history in address bar results" for clean UI
|
user_pref("browser.urlbar.showSearchSuggestionsFirst", false); // unselect "Show search suggestions ahead of browsing history in address bar results" for clean UI
|
||||||
user_pref("browser.urlbar.groupLabels.enabled", false); // hide Firefox Suggest label in URL dropdown box
|
//user_pref("browser.urlbar.suggest.trending", false); // FF119+ disable showing trending searches; unselect for clean UI
|
||||||
//user_pref("signon.rememberSignons", false); // Privacy & Security>Logins and Passwords>Ask to save logins and passwords for websites
|
//user_pref("browser.urlbar.groupLabels.enabled", false); // hide Firefox Suggest label in URL dropdown box
|
||||||
user_pref("signon.management.page.breach-alerts.enabled", false); // extra hardening
|
user_pref("signon.management.page.breach-alerts.enabled", false); // extra hardening
|
||||||
|
user_pref("signon.autofillForms", false); // unselect "Autofill logins and passwords" for clean UI
|
||||||
user_pref("signon.generation.enabled", false); // unselect "Suggest and generate strong passwords" for clean UI
|
user_pref("signon.generation.enabled", false); // unselect "Suggest and generate strong passwords" for clean UI
|
||||||
user_pref("signon.firefoxRelay.feature", "unavailable"); // unselect suggestions from Firefox Relay for clean UI
|
user_pref("signon.firefoxRelay.feature", ""); // unselect suggestions from Firefox Relay for clean UI
|
||||||
user_pref("privacy.sanitize.sanitizeOnShutdown", true); // clear browsing data on shutdown
|
//user_pref("privacy.sanitize.sanitizeOnShutdown", true); // clear browsing data on shutdown
|
||||||
user_pref("privacy.clearOnShutdown.offlineApps", true); // clear Site Data on shutdown
|
//user_pref("privacy.clearOnShutdown.offlineApps", true); // clear Site Data on shutdown
|
||||||
user_pref("browser.safebrowsing.downloads.enabled", false); // deny SB to scan downloads to identify suspicious files; local checks only
|
user_pref("browser.safebrowsing.downloads.enabled", false); // deny SB to scan downloads to identify suspicious files; local checks only
|
||||||
user_pref("browser.safebrowsing.downloads.remote.url", ""); // enforce no remote checks for downloads by SB
|
user_pref("browser.safebrowsing.downloads.remote.url", ""); // enforce no remote checks for downloads by SB
|
||||||
user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); // clean up UI; not needed in user.js if remote downloads are disabled
|
user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); // clean up UI; not needed in user.js if remote downloads are disabled
|
||||||
user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); // clean up UI; not needed in user.js if remote downloads are disabled
|
user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); // clean up UI; not needed in user.js if remote downloads are disabled
|
||||||
user_pref("browser.safebrowsing.allowOverride", false); // do not allow user to override SB
|
user_pref("browser.safebrowsing.allowOverride", false); // do not allow user to override SB
|
||||||
user_pref("dom.push.enabled", false); // disable Push API; breaks FF Sync
|
|
||||||
user_pref("browser.search.update", false); // do not update opensearch engines
|
user_pref("browser.search.update", false); // do not update opensearch engines
|
||||||
user_pref("network.notify.checkForProxies", false); // skip proxy request check
|
|
||||||
user_pref("network.trr.confirmationNS", "skip"); // skip TRR confirmation request
|
user_pref("network.trr.confirmationNS", "skip"); // skip TRR confirmation request
|
||||||
|
user_pref("extensions.webextensions.restrictedDomains", ""); // remove Mozilla domains so adblocker works on pages
|
||||||
|
user_pref("identity.fxaccounts.enabled", false); // disable Firefox Sync
|
||||||
|
user_pref("browser.firefox-view.feature-tour", "{\"screen\":\"\",\"complete\":true}"); // disable the Firefox View tour from popping up for new profiles
|
||||||
|
user_pref("accessibility.force_disabled", 1); // disable Accessibility features
|
||||||
|
//user_pref("security.ssl.require_safe_negotiation", true); // safe negotiation
|
||||||
|
user_pref("security.cert_pinning.enforcement_level", 2); // strict public key pinning
|
||||||
|
//user_pref("browser.download.useDownloadDir", true); // one-click downloads
|
||||||
|
|
||||||
/** PESKYFOX ***/
|
/** PESKYFOX ***/
|
||||||
user_pref("devtools.accessibility.enabled", false); // removes annoying "Inspect Accessibility Properties" on right-click
|
//user_pref("cookiebanners.service.mode", 2); // fall back to the accept button to remove banner
|
||||||
|
user_pref("devtools.accessibility.enabled", false); // removes un-needed "Inspect Accessibility Properties" on right-click
|
||||||
user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Settings>Home>Firefox Home Content>Recent Activity>Shortcuts>Sponsored shortcuts
|
user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Settings>Home>Firefox Home Content>Recent Activity>Shortcuts>Sponsored shortcuts
|
||||||
user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Settings>Home>Firefox Home Content>Recent Activity>Recommended by Pocket>Sponsored Stories
|
user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Settings>Home>Firefox Home Content>Recent Activity>Recommended by Pocket>Sponsored Stories
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includeBookmarks", false); // Settings>Home>Firefox Home Content>Recent Activity>Bookmarks
|
user_pref("browser.newtabpage.activity-stream.section.highlights.includeBookmarks", false); // Settings>Home>Firefox Home Content>Recent Activity>Bookmarks
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false); // Settings>Home>Firefox Home Content>Recent Activity>Most Recent Download
|
user_pref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false); // Settings>Home>Firefox Home Content>Recent Activity>Most Recent Download
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false); // Settings>Home>Firefox Home Content>Recent Activity>Visited Pages
|
user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false); // Settings>Home>Firefox Home Content>Recent Activity>Visited Pages
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket", false); // Settings>Home>Firefox Home Content>Recent Activity>Pages Saved to Pocket
|
user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket", false); // Settings>Home>Firefox Home Content>Recent Activity>Pages Saved to Pocket
|
||||||
|
//user_pref("browser.download.useDownloadDir", true); // use direct downloads
|
||||||
user_pref("browser.download.folderList", 0); // 0=desktop, 1=downloads, 2=last used
|
user_pref("browser.download.folderList", 0); // 0=desktop, 1=downloads, 2=last used
|
||||||
user_pref("browser.toolbars.bookmarks.visibility", "never"); // always hide bookmark bar
|
user_pref("browser.toolbars.bookmarks.visibility", "never"); // always hide bookmark bar
|
||||||
user_pref("browser.startup.homepage_override.mstone", "ignore"); // What's New page after updates; master switch
|
user_pref("browser.startup.homepage_override.mstone", "ignore"); // What's New page after updates; master switch
|
||||||
user_pref("browser.urlbar.suggest.bookmark", false); // hide URL bar dropdown suggestions
|
user_pref("browser.urlbar.suggest.history", false); // Browsing history; hide URL bar dropdown suggestions
|
||||||
user_pref("browser.urlbar.suggest.history", false); // hide URL bar dropdown suggestions
|
user_pref("browser.urlbar.suggest.bookmark", false); // Bookmarks; hide URL bar dropdown suggestions
|
||||||
user_pref("browser.urlbar.suggest.openpage", false); // hide URL bar dropdown suggestions
|
user_pref("browser.urlbar.suggest.openpage", false); // Open tabs; hide URL bar dropdown suggestions
|
||||||
//user_pref("browser.urlbar.suggest.searches", false); // hide URL bar dropdown suggestions (needed?)
|
user_pref("browser.urlbar.suggest.topsites", false); // Shortcuts; disable dropdown suggestions with empty query
|
||||||
|
user_pref("browser.urlbar.suggest.engines", false); // Search engines; tab-to-search
|
||||||
|
user_pref("browser.urlbar.quicksuggest.enabled", false); // hide Firefox Suggest UI in the settings
|
||||||
//user_pref("browser.urlbar.maxRichResults", 1); // minimum suggestion needed for URL bar autofill
|
//user_pref("browser.urlbar.maxRichResults", 1); // minimum suggestion needed for URL bar autofill
|
||||||
user_pref("browser.bookmarks.max_backups", 0); // minimize disk use; manually back-up
|
user_pref("browser.bookmarks.max_backups", 0); // minimize disk use; manually back-up
|
||||||
user_pref("view_source.wrap_long_lines", true); // wrap source lines
|
user_pref("view_source.wrap_long_lines", true); // wrap source lines
|
||||||
user_pref("devtools.debugger.ui.editor-wrapping", true); // wrap lines in devtools
|
user_pref("devtools.debugger.ui.editor-wrapping", true); // wrap lines in devtools
|
||||||
user_pref("browser.zoom.full", false); // text-only zoom, not all elements on page
|
user_pref("browser.zoom.full", false); // text-only zoom, not all elements on page
|
||||||
user_pref("pdfjs.sidebarViewOnLoad", 2); // [HIDDEN] force showing of Table of Contents in sidebar for PDFs (if available)
|
user_pref("pdfjs.sidebarViewOnLoad", 2); // force showing of Table of Contents in sidebar for PDFs (if available)
|
||||||
|
//user_pref("layout.word_select.eat_space_to_next_word", false); // do not select the space next to a word when selecting a word
|
||||||
|
//user_pref("browser.tabs.loadInBackground", false); // CTRL+SHIFT+CLICK for background tabs; Settings>General>Tabs>When you open a link, image or media in a new tab, switch to it immediately
|
||||||
|
user_pref("browser.tabs.loadBookmarksInTabs", true); // force bookmarks to open in a new tab, not the current tab
|
||||||
user_pref("ui.key.menuAccessKey", 0); // remove underlined characters from various settings
|
user_pref("ui.key.menuAccessKey", 0); // remove underlined characters from various settings
|
||||||
user_pref("general.autoScroll", false); // disable unintentional behavior for middle click
|
user_pref("general.autoScroll", false); // disable unintentional behavior for middle click
|
||||||
user_pref("ui.SpellCheckerUnderlineStyle", 1); // dots for spell check errors
|
user_pref("ui.SpellCheckerUnderlineStyle", 1); // dots for spell check errors
|
||||||
//user_pref("browser.tabs.loadInBackground", false); // CTRL+SHIFT+CLICK for background tabs; Settings>General>Tabs>"When you open a link, image or media in a new tab, switch to it immediately"
|
|
||||||
user_pref("media.videocontrols.picture-in-picture.display-text-tracks.size", "small"); // PiP
|
user_pref("media.videocontrols.picture-in-picture.display-text-tracks.size", "small"); // PiP
|
||||||
user_pref("media.videocontrols.picture-in-picture.urlbar-button.enabled", false); // PiP in address bar
|
user_pref("media.videocontrols.picture-in-picture.urlbar-button.enabled", false); // PiP in address bar
|
||||||
user_pref("reader.parse-on-load.enabled", false); // disable reader mode
|
user_pref("reader.parse-on-load.enabled", false); // disable reader mode
|
||||||
//user_pref("reader.color_scheme", "auto"); // match system theme for when reader is enabled
|
//user_pref("reader.color_scheme", "auto"); // match system theme for when reader is enabled
|
||||||
//user_pref("browser.urlbar.openintab", true); // stay on current site and open new tab when typing in URL bar
|
//user_pref("browser.urlbar.openintab", true); // stay on current site and open new tab when typing in URL bar
|
||||||
|
|
||||||
/** DELETE IF NOT NIGHTLY ***/
|
/** DELETE IF NOT NIGHTLY ***/
|
||||||
user_pref("layout.css.scroll-driven-animations.enabled", true); // CSS scroll-linked animations
|
|
||||||
user_pref("privacy.userContext.enabled", false); // disable Containers functionality
|
user_pref("privacy.userContext.enabled", false); // disable Containers functionality
|
||||||
user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // true by default on NIGHTLY
|
user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // true by default on NIGHTLY
|
||||||
//user_pref("browser.urlbar.suggest.quickactions", false); // Quick Actions in URL bar
|
|
||||||
//user_pref("xpinstall.signatures.required", false); // [ESR/DEV/NIGHTLY]
|
//user_pref("xpinstall.signatures.required", false); // [ESR/DEV/NIGHTLY]
|
||||||
|
//user_pref("browser.urlbar.suggest.quickactions", false); // Quick actions; hide URL bar dropdown suggestions
|
||||||
|
//user_pref("browser.urlbar.suggest.clipboard", false); // Clipboard; hide URL bar dropdown suggestions
|
||||||
|
|
||||||
/** DELETE IF NOT WINDOWS DESKTOP ***/
|
/** DELETE IF NOT WINDOWS DESKTOP ***/
|
||||||
user_pref("network.trr.mode", 3); // enable TRR (without System fallback)
|
user_pref("network.trr.mode", 3); // enable TRR (without System fallback)
|
||||||
user_pref("pdfjs.defaultZoomValue", "125"); // DESKTOP; alt=page-width; PDF zoom level
|
user_pref("gfx.canvas.accelerated", true); // DEFAULT NON-WINDOWS; enable if not using an integrated GPU
|
||||||
|
user_pref("browser.startup.preXulSkeletonUI", false); // WINDOWS
|
||||||
|
user_pref("default-browser-agent.enabled", false); // deny Mozilla monitoring default browser (breaks "Make Default" button)
|
||||||
|
user_pref("geo.provider.ms-windows-location", false); // [WINDOWS]
|
||||||
|
user_pref("pdfjs.defaultZoomValue", "125"); // alt=page-width; PDF zoom level
|
||||||
user_pref("gfx.font_rendering.cleartype_params.rendering_mode", 5);
|
user_pref("gfx.font_rendering.cleartype_params.rendering_mode", 5);
|
||||||
user_pref("gfx.font_rendering.cleartype_params.cleartype_level", 100);
|
user_pref("gfx.font_rendering.cleartype_params.cleartype_level", 100);
|
||||||
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_for_families", "");
|
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_for_families", "");
|
||||||
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_max_size", 6);
|
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_max_size", 6);
|
||||||
user_pref("gfx.font_rendering.directwrite.use_gdi_table_loading", false);
|
user_pref("gfx.font_rendering.directwrite.use_gdi_table_loading", false);
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.gamma", 898); // 1000-2200; https://www.reddit.com/r/firefox/comments/10ed7o2/comment/j4qar9y/
|
//user_pref("gfx.font_rendering.cleartype_params.gamma", 898); // 1000-2200; https://www.reddit.com/r/firefox/comments/10ed7o2/comment/j4qar9y/
|
||||||
user_pref("image.mem.decode_bytes_at_a_time", 262144); // alt=512000
|
|
||||||
user_pref("browser.cache.memory.capacity", 2097152); // fixed maximum 2 GB in memory cache
|
|
||||||
user_pref("browser.cache.memory.max_entry_size", 327680); // maximum size of in memory cached objects
|
|
||||||
//user_pref("media.memory_caches_combined_limit_pc_sysmem", 40);
|
|
||||||
user_pref("media.memory_caches_combined_limit_kb", 3145728);
|
|
||||||
//user_pref("font.name.serif.x-western", "Roboto Slab"); // serif font
|
//user_pref("font.name.serif.x-western", "Roboto Slab"); // serif font
|
||||||
//user_pref("font.name.sans-serif.x-western", "Roboto"); // sans-serif font
|
//user_pref("font.name.sans-serif.x-western", "Roboto"); // sans-serif font
|
||||||
//user_pref("font.name.monospace.x-western", "Fira Code"); // monospace font
|
//user_pref("font.name.monospace.x-western", "Fira Code"); // monospace font
|
||||||
|
|
||||||
|
/** DELETE IF NOT ENTERPRISE WINDOWS LAPTOP ***/
|
||||||
|
//user_pref("network.trr.mode", 3); // enable TRR (without System fallback)
|
||||||
|
//user_pref("browser.startup.preXulSkeletonUI", false); // WINDOWS
|
||||||
|
user_pref("gfx.font_rendering.cleartype_params.rendering_mode", 5);
|
||||||
|
user_pref("gfx.font_rendering.cleartype_params.cleartype_level", 100);
|
||||||
|
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_for_families", "");
|
||||||
|
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_max_size", 6);
|
||||||
|
user_pref("gfx.font_rendering.directwrite.use_gdi_table_loading", false);
|
||||||
|
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", false); // no need for userChrome
|
||||||
|
user_pref("browser.urlbar.suggest.history", true); // Browsing history
|
||||||
|
user_pref("browser.urlbar.suggest.bookmark", true); // Bookmarks
|
||||||
|
//user_pref("browser.urlbar.suggest.openpage", true); // Open tabs
|
||||||
|
//user_pref("browser.urlbar.suggest.topsites", true); // Shortcuts
|
||||||
|
user_pref("browser.download.folderList", 1); // 0=desktop, 1=downloads, 2=last used
|
||||||
|
user_pref("browser.download.useDownloadDir", false); // ask where to download
|
||||||
|
|
||||||
/** DELETE IF NOT macOS LAPTOP ***/
|
/** DELETE IF NOT macOS LAPTOP ***/
|
||||||
user_pref("network.trr.mode", 2); // enable TRR (with System fallback)
|
user_pref("network.trr.mode", 2); // enable TRR (with System fallback)
|
||||||
user_pref("pdfjs.defaultZoomValue", "page-width"); // LAPTOP; PDF zoom level
|
user_pref("network.trr.max-fails", 5); // lower max attempts to use DoH
|
||||||
|
user_pref("geo.provider.use_corelocation", false); // geolocation [MAC]
|
||||||
|
user_pref("pdfjs.defaultZoomValue", "page-width"); // PDF zoom level
|
||||||
user_pref("app.update.auto", false); // disable auto-installing Firefox updates [NON-WINDOWS]
|
user_pref("app.update.auto", false); // disable auto-installing Firefox updates [NON-WINDOWS]
|
||||||
//user_pref("font.name.monospace.x-western", "SF Mono"); // monospace font
|
//user_pref("font.name.monospace.x-western", "SF Mono"); // monospace font
|
||||||
File diff suppressed because one or more lines are too long
@@ -10,41 +10,26 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Betterfox *
|
* Betterfox *
|
||||||
* "Ad meliora" *
|
* "Ad meliora" *
|
||||||
* version: 116 *
|
* version: 128 *
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
* url: https://github.com/yokoffing/Betterfox *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: FASTFOX *
|
* SECTION: FASTFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
user_pref("nglayout.initialpaint.delay", 0);
|
/** GENERAL ***/
|
||||||
user_pref("nglayout.initialpaint.delay_in_oopif", 0);
|
|
||||||
user_pref("content.notify.interval", 100000);
|
user_pref("content.notify.interval", 100000);
|
||||||
user_pref("browser.startup.preXulSkeletonUI", false);
|
|
||||||
|
|
||||||
/** EXPERIMENTAL ***/
|
|
||||||
user_pref("layout.css.grid-template-masonry-value.enabled", true);
|
|
||||||
user_pref("dom.enable_web_task_scheduling", true);
|
|
||||||
user_pref("layout.css.has-selector.enabled", true);
|
|
||||||
|
|
||||||
/** GFX ***/
|
/** GFX ***/
|
||||||
//user_pref("gfx.webrender.precache-shaders", true); // optional
|
|
||||||
//user_pref("gfx.canvas.accelerated", true); // enable if using a dedicated GPU on WINDOWS
|
|
||||||
user_pref("gfx.canvas.accelerated.cache-items", 4096);
|
user_pref("gfx.canvas.accelerated.cache-items", 4096);
|
||||||
user_pref("gfx.canvas.accelerated.cache-size", 512);
|
user_pref("gfx.canvas.accelerated.cache-size", 512);
|
||||||
user_pref("gfx.content.skia-font-cache-size", 20);
|
user_pref("gfx.content.skia-font-cache-size", 20);
|
||||||
|
|
||||||
/** BROWSER CACHE ***/
|
/** DISK CACHE ***/
|
||||||
//user_pref("browser.cache.disk.enable", true); // DEFAULT
|
user_pref("browser.cache.jsbc_compression_level", 3);
|
||||||
//user_pref("browser.cache.disk.smart_size.enabled", false);
|
|
||||||
//user_pref("browser.cache.disk.capacity", 8192000);
|
|
||||||
//user_pref("browser.cache.disk.metadata_memory_limit", 10000);
|
|
||||||
user_pref("browser.cache.memory.capacity", 1048576);
|
|
||||||
user_pref("browser.cache.memory.max_entry_size", 65536);
|
|
||||||
|
|
||||||
/** MEDIA CACHE ***/
|
/** MEDIA CACHE ***/
|
||||||
user_pref("media.memory_cache_max_size", 196608);
|
user_pref("media.memory_cache_max_size", 65536);
|
||||||
user_pref("media.memory_caches_combined_limit_kb", 1572864);
|
|
||||||
user_pref("media.cache_readahead_limit", 7200);
|
user_pref("media.cache_readahead_limit", 7200);
|
||||||
user_pref("media.cache_resume_threshold", 3600);
|
user_pref("media.cache_resume_threshold", 3600);
|
||||||
|
|
||||||
@@ -52,29 +37,25 @@ user_pref("media.cache_resume_threshold", 3600);
|
|||||||
user_pref("image.mem.decode_bytes_at_a_time", 32768);
|
user_pref("image.mem.decode_bytes_at_a_time", 32768);
|
||||||
|
|
||||||
/** NETWORK ***/
|
/** NETWORK ***/
|
||||||
user_pref("network.buffer.cache.size", 262144);
|
|
||||||
user_pref("network.buffer.cache.count", 128);
|
|
||||||
user_pref("network.http.max-connections", 1800);
|
user_pref("network.http.max-connections", 1800);
|
||||||
user_pref("network.http.max-persistent-connections-per-server", 10);
|
user_pref("network.http.max-persistent-connections-per-server", 10);
|
||||||
user_pref("network.http.max-urgent-start-excessive-connections-per-host", 5);
|
user_pref("network.http.max-urgent-start-excessive-connections-per-host", 5);
|
||||||
user_pref("network.websocket.max-connections", 400);
|
user_pref("network.http.pacing.requests.enabled", false);
|
||||||
user_pref("network.http.pacing.requests.min-parallelism", 12);
|
user_pref("network.dnsCacheExpiration", 3600);
|
||||||
user_pref("network.http.pacing.requests.burst", 20);
|
user_pref("network.ssl_tokens_cache_capacity", 10240);
|
||||||
user_pref("network.http.connection-retry-timeout", 0);
|
|
||||||
user_pref("network.dnsCacheEntries", 10000);
|
|
||||||
user_pref("network.dnsCacheExpiration", 86400);
|
|
||||||
user_pref("network.dns.max_high_priority_threads", 8);
|
|
||||||
user_pref("network.ssl_tokens_cache_capacity", 32768);
|
|
||||||
|
|
||||||
/** SPECULATIVE CONNECTIONS ***/
|
/** SPECULATIVE LOADING ***/
|
||||||
user_pref("network.http.speculative-parallel-limit", 0);
|
|
||||||
user_pref("network.dns.disablePrefetch", true);
|
user_pref("network.dns.disablePrefetch", true);
|
||||||
user_pref("browser.urlbar.speculativeConnect.enabled", false);
|
user_pref("network.dns.disablePrefetchFromHTTPS", true);
|
||||||
user_pref("browser.places.speculativeConnect.enabled", false);
|
|
||||||
user_pref("network.prefetch-next", false);
|
user_pref("network.prefetch-next", false);
|
||||||
user_pref("network.predictor.enabled", false);
|
user_pref("network.predictor.enabled", false);
|
||||||
user_pref("network.predictor.enable-prefetch", false);
|
user_pref("network.predictor.enable-prefetch", false);
|
||||||
|
|
||||||
|
/** EXPERIMENTAL ***/
|
||||||
|
user_pref("layout.css.grid-template-masonry-value.enabled", true);
|
||||||
|
user_pref("dom.enable_web_task_scheduling", true);
|
||||||
|
user_pref("dom.security.sanitizer.enabled", true);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: SECUREFOX *
|
* SECTION: SECUREFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
@@ -82,37 +63,38 @@ user_pref("network.predictor.enable-prefetch", false);
|
|||||||
user_pref("browser.contentblocking.category", "strict");
|
user_pref("browser.contentblocking.category", "strict");
|
||||||
user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com, *.tiktok.com");
|
user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com, *.tiktok.com");
|
||||||
user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
||||||
user_pref("privacy.query_stripping.strip_list", "__hsfp __hssc __hstc __s _hsenc _openstat dclid fbclid gbraid gclid hsCtaTracking igshid mc_eid ml_subscriber ml_subscriber_hash msclkid oft_c oft_ck oft_d oft_id oft_ids oft_k oft_lk oft_sk oly_anon_id oly_enc_id rb_clickid s_cid twclid vero_conv vero_id wbraid wickedid yclid");
|
user_pref("network.cookie.sameSite.noneRequiresSecure", true);
|
||||||
|
user_pref("browser.download.start_downloads_in_tmp_dir", true);
|
||||||
|
user_pref("browser.helperApps.deleteTempFileOnExit", true);
|
||||||
user_pref("browser.uitour.enabled", false);
|
user_pref("browser.uitour.enabled", false);
|
||||||
user_pref("privacy.globalprivacycontrol.enabled", true);
|
user_pref("privacy.globalprivacycontrol.enabled", true);
|
||||||
user_pref("privacy.globalprivacycontrol.functionality.enabled", true);
|
|
||||||
|
|
||||||
/** OCSP & CERTS / HPKP ***/
|
/** OCSP & CERTS / HPKP ***/
|
||||||
user_pref("security.OCSP.enabled", 0);
|
user_pref("security.OCSP.enabled", 0);
|
||||||
user_pref("security.remote_settings.crlite_filters.enabled", true);
|
user_pref("security.remote_settings.crlite_filters.enabled", true);
|
||||||
user_pref("security.pki.crlite_mode", 2);
|
user_pref("security.pki.crlite_mode", 2);
|
||||||
user_pref("security.cert_pinning.enforcement_level", 2);
|
|
||||||
|
|
||||||
/** SSL / TLS ***/
|
/** SSL / TLS ***/
|
||||||
user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true);
|
user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true);
|
||||||
user_pref("security.ssl.require_safe_negotiation", true);
|
|
||||||
user_pref("browser.xul.error_pages.expert_bad_cert", true);
|
user_pref("browser.xul.error_pages.expert_bad_cert", true);
|
||||||
user_pref("security.tls.enable_0rtt_data", false);
|
user_pref("security.tls.enable_0rtt_data", false);
|
||||||
|
|
||||||
/** DISK AVOIDANCE ***/
|
/** DISK AVOIDANCE ***/
|
||||||
user_pref("browser.privatebrowsing.forceMediaMemoryCache", true);
|
user_pref("browser.privatebrowsing.forceMediaMemoryCache", true);
|
||||||
user_pref("browser.sessionstore.interval", 60000);
|
user_pref("browser.sessionstore.interval", 60000);
|
||||||
user_pref("browser.sessionstore.privacy_level", 2);
|
|
||||||
|
|
||||||
/** SHUTDOWN & SANITIZING ***/
|
/** SHUTDOWN & SANITIZING ***/
|
||||||
user_pref("privacy.history.custom", true);
|
user_pref("privacy.history.custom", true);
|
||||||
|
|
||||||
/** SEARCH / URL BAR ***/
|
/** SEARCH / URL BAR ***/
|
||||||
|
user_pref("browser.urlbar.trimHttps", true);
|
||||||
user_pref("browser.search.separatePrivateDefault.ui.enabled", true);
|
user_pref("browser.search.separatePrivateDefault.ui.enabled", true);
|
||||||
user_pref("browser.urlbar.update2.engineAliasRefresh", true);
|
user_pref("browser.urlbar.update2.engineAliasRefresh", true);
|
||||||
user_pref("browser.search.suggest.enabled", false);
|
user_pref("browser.search.suggest.enabled", false);
|
||||||
|
user_pref("browser.urlbar.quicksuggest.enabled", false);
|
||||||
user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false);
|
user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false);
|
||||||
user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false);
|
user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false);
|
||||||
|
user_pref("browser.urlbar.groupLabels.enabled", false);
|
||||||
user_pref("browser.formfill.enable", false);
|
user_pref("browser.formfill.enable", false);
|
||||||
user_pref("security.insecure_connection_text.enabled", true);
|
user_pref("security.insecure_connection_text.enabled", true);
|
||||||
user_pref("security.insecure_connection_text.pbmode.enabled", true);
|
user_pref("security.insecure_connection_text.pbmode.enabled", true);
|
||||||
@@ -120,24 +102,18 @@ user_pref("network.IDN_show_punycode", true);
|
|||||||
|
|
||||||
/** HTTPS-FIRST POLICY ***/
|
/** HTTPS-FIRST POLICY ***/
|
||||||
user_pref("dom.security.https_first", true);
|
user_pref("dom.security.https_first", true);
|
||||||
|
user_pref("dom.security.https_first_schemeless", true);
|
||||||
|
|
||||||
/** HTTPS-ONLY MODE ***/
|
/** PASSWORDS ***/
|
||||||
user_pref("dom.security.https_only_mode_error_page_user_suggestions", true);
|
user_pref("signon.formlessCapture.enabled", false);
|
||||||
|
user_pref("signon.privateBrowsingCapture.enabled", false);
|
||||||
/** PASSWORDS AND AUTOFILL ***/
|
user_pref("network.auth.subresource-http-auth-allow", 1);
|
||||||
user_pref("signon.rememberSignons", false);
|
|
||||||
user_pref("editor.truncate_user_pastes", false);
|
user_pref("editor.truncate_user_pastes", false);
|
||||||
|
|
||||||
/** ADDRESS + CREDIT CARD MANAGER ***/
|
|
||||||
user_pref("extensions.formautofill.addresses.enabled", false);
|
|
||||||
user_pref("extensions.formautofill.creditCards.enabled", false);
|
|
||||||
|
|
||||||
/** MIXED CONTENT + CROSS-SITE ***/
|
/** MIXED CONTENT + CROSS-SITE ***/
|
||||||
user_pref("network.auth.subresource-http-auth-allow", 1);
|
|
||||||
user_pref("security.mixed_content.block_display_content", true);
|
user_pref("security.mixed_content.block_display_content", true);
|
||||||
user_pref("pdfjs.enableScripting", false);
|
user_pref("pdfjs.enableScripting", false);
|
||||||
user_pref("extensions.postDownloadThirdPartyPrompt", false);
|
user_pref("extensions.postDownloadThirdPartyPrompt", false);
|
||||||
user_pref("permissions.delegation.enabled", false);
|
|
||||||
|
|
||||||
/** HEADERS / REFERERS ***/
|
/** HEADERS / REFERERS ***/
|
||||||
user_pref("network.http.referer.XOriginTrimmingPolicy", 2);
|
user_pref("network.http.referer.XOriginTrimmingPolicy", 2);
|
||||||
@@ -153,16 +129,14 @@ user_pref("media.peerconnection.ice.default_address_only", true);
|
|||||||
user_pref("browser.safebrowsing.downloads.remote.enabled", false);
|
user_pref("browser.safebrowsing.downloads.remote.enabled", false);
|
||||||
|
|
||||||
/** MOZILLA ***/
|
/** MOZILLA ***/
|
||||||
user_pref("accessibility.force_disabled", 1);
|
|
||||||
user_pref("identity.fxaccounts.enabled", false);
|
|
||||||
user_pref("browser.tabs.firefox-view", false);
|
|
||||||
user_pref("permissions.default.desktop-notification", 2);
|
user_pref("permissions.default.desktop-notification", 2);
|
||||||
user_pref("permissions.default.geo", 2);
|
user_pref("permissions.default.geo", 2);
|
||||||
user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%");
|
|
||||||
user_pref("permissions.manager.defaultsUrl", "");
|
user_pref("permissions.manager.defaultsUrl", "");
|
||||||
user_pref("webchannel.allowObject.urlWhitelist", "");
|
user_pref("webchannel.allowObject.urlWhitelist", "");
|
||||||
|
|
||||||
/** TELEMETRY ***/
|
/** TELEMETRY ***/
|
||||||
|
user_pref("datareporting.policy.dataSubmissionEnabled", false);
|
||||||
|
user_pref("datareporting.healthreport.uploadEnabled", false);
|
||||||
user_pref("toolkit.telemetry.unified", false);
|
user_pref("toolkit.telemetry.unified", false);
|
||||||
user_pref("toolkit.telemetry.enabled", false);
|
user_pref("toolkit.telemetry.enabled", false);
|
||||||
user_pref("toolkit.telemetry.server", "data:,");
|
user_pref("toolkit.telemetry.server", "data:,");
|
||||||
@@ -174,33 +148,34 @@ user_pref("toolkit.telemetry.bhrPing.enabled", false);
|
|||||||
user_pref("toolkit.telemetry.firstShutdownPing.enabled", false);
|
user_pref("toolkit.telemetry.firstShutdownPing.enabled", false);
|
||||||
user_pref("toolkit.telemetry.coverage.opt-out", true);
|
user_pref("toolkit.telemetry.coverage.opt-out", true);
|
||||||
user_pref("toolkit.coverage.opt-out", true);
|
user_pref("toolkit.coverage.opt-out", true);
|
||||||
user_pref("datareporting.healthreport.uploadEnabled", false);
|
user_pref("toolkit.coverage.endpoint.base", "");
|
||||||
user_pref("datareporting.policy.dataSubmissionEnabled", false);
|
user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false);
|
||||||
|
user_pref("browser.newtabpage.activity-stream.telemetry", false);
|
||||||
|
|
||||||
|
/** EXPERIMENTS ***/
|
||||||
user_pref("app.shield.optoutstudies.enabled", false);
|
user_pref("app.shield.optoutstudies.enabled", false);
|
||||||
user_pref("browser.discovery.enabled", false);
|
user_pref("app.normandy.enabled", false);
|
||||||
|
user_pref("app.normandy.api_url", "");
|
||||||
|
|
||||||
|
/** CRASH REPORTS ***/
|
||||||
user_pref("breakpad.reportURL", "");
|
user_pref("breakpad.reportURL", "");
|
||||||
user_pref("browser.tabs.crashReporting.sendReport", false);
|
user_pref("browser.tabs.crashReporting.sendReport", false);
|
||||||
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false);
|
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false);
|
||||||
|
|
||||||
|
/** DETECTION ***/
|
||||||
user_pref("captivedetect.canonicalURL", "");
|
user_pref("captivedetect.canonicalURL", "");
|
||||||
user_pref("network.captive-portal-service.enabled", false);
|
user_pref("network.captive-portal-service.enabled", false);
|
||||||
user_pref("network.connectivity-service.enabled", false);
|
user_pref("network.connectivity-service.enabled", false);
|
||||||
user_pref("app.normandy.enabled", false);
|
user_pref("dom.private-attribution.submission.enabled", false);
|
||||||
user_pref("app.normandy.api_url", "");
|
|
||||||
user_pref("browser.ping-centre.telemetry", false);
|
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false);
|
|
||||||
user_pref("browser.newtabpage.activity-stream.telemetry", false);
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: PESKYFOX *
|
* SECTION: PESKYFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
/** MOZILLA UI ***/
|
/** MOZILLA UI ***/
|
||||||
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
|
||||||
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
|
||||||
user_pref("app.update.suppressPrompts", true);
|
|
||||||
user_pref("browser.compactmode.show", true);
|
|
||||||
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
||||||
user_pref("extensions.getAddons.showPane", false);
|
user_pref("extensions.getAddons.showPane", false);
|
||||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
||||||
|
user_pref("browser.discovery.enabled", false);
|
||||||
user_pref("browser.shell.checkDefaultBrowser", false);
|
user_pref("browser.shell.checkDefaultBrowser", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
|
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
|
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
|
||||||
@@ -208,57 +183,63 @@ user_pref("browser.preferences.moreFromMozilla", false);
|
|||||||
user_pref("browser.tabs.tabmanager.enabled", false);
|
user_pref("browser.tabs.tabmanager.enabled", false);
|
||||||
user_pref("browser.aboutConfig.showWarning", false);
|
user_pref("browser.aboutConfig.showWarning", false);
|
||||||
user_pref("browser.aboutwelcome.enabled", false);
|
user_pref("browser.aboutwelcome.enabled", false);
|
||||||
user_pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
|
|
||||||
user_pref("browser.privatebrowsing.enable-new-indicator", false);
|
|
||||||
user_pref("cookiebanners.service.mode", 2);
|
|
||||||
user_pref("cookiebanners.service.mode.privateBrowsing", 2);
|
|
||||||
user_pref("browser.translations.enable", true);
|
|
||||||
|
|
||||||
/** FULLSCREEN ***/
|
/** THEME ADJUSTMENTS ***/
|
||||||
|
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
||||||
|
user_pref("browser.compactmode.show", true);
|
||||||
|
user_pref("browser.display.focus_ring_on_anything", true);
|
||||||
|
user_pref("browser.display.focus_ring_style", 0);
|
||||||
|
user_pref("browser.display.focus_ring_width", 0);
|
||||||
|
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
||||||
|
user_pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
|
||||||
|
|
||||||
|
/** COOKIE BANNER HANDLING ***/
|
||||||
|
user_pref("cookiebanners.service.mode", 1);
|
||||||
|
user_pref("cookiebanners.service.mode.privateBrowsing", 1);
|
||||||
|
|
||||||
|
/** FULLSCREEN NOTICE ***/
|
||||||
user_pref("full-screen-api.transition-duration.enter", "0 0");
|
user_pref("full-screen-api.transition-duration.enter", "0 0");
|
||||||
user_pref("full-screen-api.transition-duration.leave", "0 0");
|
user_pref("full-screen-api.transition-duration.leave", "0 0");
|
||||||
user_pref("full-screen-api.warning.delay", -1);
|
user_pref("full-screen-api.warning.delay", -1);
|
||||||
user_pref("full-screen-api.warning.timeout", 0);
|
user_pref("full-screen-api.warning.timeout", 0);
|
||||||
|
|
||||||
/** URL BAR ***/
|
/** URL BAR ***/
|
||||||
user_pref("browser.urlbar.suggest.engines", false);
|
|
||||||
user_pref("browser.urlbar.suggest.topsites", false);
|
|
||||||
user_pref("browser.urlbar.suggest.calculator", true);
|
user_pref("browser.urlbar.suggest.calculator", true);
|
||||||
user_pref("browser.urlbar.unitConversion.enabled", true);
|
user_pref("browser.urlbar.unitConversion.enabled", true);
|
||||||
|
user_pref("browser.urlbar.trending.featureGate", false);
|
||||||
|
|
||||||
/** NEW TAB PAGE ***/
|
/** NEW TAB PAGE ***/
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false);
|
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
|
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
|
||||||
|
|
||||||
/*** POCKET ***/
|
/** POCKET ***/
|
||||||
user_pref("extensions.pocket.enabled", false);
|
user_pref("extensions.pocket.enabled", false);
|
||||||
|
|
||||||
/** DOWNLOADS ***/
|
/** DOWNLOADS ***/
|
||||||
user_pref("browser.download.useDownloadDir", false);
|
|
||||||
user_pref("browser.download.alwaysOpenPanel", false);
|
|
||||||
user_pref("browser.download.manager.addToRecentDocs", false);
|
|
||||||
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
||||||
|
user_pref("browser.download.manager.addToRecentDocs", false);
|
||||||
|
|
||||||
/** PDF ***/
|
/** PDF ***/
|
||||||
user_pref("browser.download.open_pdf_attachments_inline", true);
|
user_pref("browser.download.open_pdf_attachments_inline", true);
|
||||||
user_pref("pdfjs.sidebarViewOnLoad", 2);
|
|
||||||
|
|
||||||
/** TAB BEHAVIOR ***/
|
/** TAB BEHAVIOR ***/
|
||||||
user_pref("browser.tabs.loadBookmarksInTabs", true);
|
|
||||||
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
||||||
user_pref("browser.menu.showViewImageInfo", true);
|
user_pref("browser.menu.showViewImageInfo", true);
|
||||||
user_pref("findbar.highlightAll", true);
|
user_pref("findbar.highlightAll", true);
|
||||||
|
user_pref("layout.word_select.eat_space_to_next_word", false);
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: SMOOTHFOX *
|
|
||||||
****************************************************************************/
|
|
||||||
// visit https://github.com/yokoffing/Betterfox/blob/master/Smoothfox.js
|
|
||||||
// Enter your scrolling prefs below this line:
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* START: MY OVERRIDES *
|
* START: MY OVERRIDES *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
// Enter your personal prefs below this line:
|
// visit https://github.com/yokoffing/Betterfox/wiki/Common-Overrides
|
||||||
|
// visit https://github.com/yokoffing/Betterfox/wiki/Optional-Hardening
|
||||||
|
// Enter your personal overrides below this line:
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* SECTION: SMOOTHFOX *
|
||||||
|
****************************************************************************/
|
||||||
|
// visit https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js
|
||||||
|
// Enter your scrolling overrides below this line:
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* END: BETTERFOX *
|
* END: BETTERFOX *
|
||||||
|
|||||||
Reference in New Issue
Block a user