update
This commit is contained in:
parent
55e68aca38
commit
4b8ef45108
1 changed files with 17 additions and 12 deletions
29
user.js
29
user.js
|
|
@ -12,11 +12,11 @@
|
|||
* "Ad meliora" *
|
||||
* version: 137 *
|
||||
* url: https://github.com/yokoffing/Betterfox *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* SECTION: FASTFOX *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
/** GENERAL ***/
|
||||
user_pref("content.notify.interval", 100000);
|
||||
|
||||
|
|
@ -55,7 +55,7 @@ user_pref("layout.css.grid-template-masonry-value.enabled", true);
|
|||
|
||||
/****************************************************************************
|
||||
* SECTION: SECUREFOX *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
/** TRACKING PROTECTION ***/
|
||||
user_pref("browser.contentblocking.category", "strict");
|
||||
user_pref("browser.download.start_downloads_in_tmp_dir", true);
|
||||
|
|
@ -154,15 +154,21 @@ user_pref("network.connectivity-service.enabled", false);
|
|||
|
||||
/****************************************************************************
|
||||
* SECTION: PESKYFOX *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
/** MOZILLA UI ***/
|
||||
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
||||
user_pref("extensions.getAddons.showPane", false);
|
||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
||||
user_pref("browser.discovery.enabled", 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.features", 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.preferences.moreFromMozilla", false);
|
||||
user_pref("browser.aboutConfig.showWarning", false);
|
||||
user_pref("browser.aboutwelcome.enabled", false);
|
||||
|
|
@ -206,13 +212,13 @@ user_pref("layout.word_select.eat_space_to_next_word", false);
|
|||
|
||||
/****************************************************************************
|
||||
* START: MY OVERRIDES *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
// 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:
|
||||
|
||||
user_pref("identity.fxaccounts.enabled", false);
|
||||
user_pref("browser.firefox-view.feature-tour", "{\"screen\":\"\",\"complete\":true}");
|
||||
user_pref("browser.firefox-view.feature-tour", '{"screen":"","complete":true}');
|
||||
|
||||
user_pref("signon.rememberSignons", false);
|
||||
user_pref("extensions.formautofill.addresses.enabled", false);
|
||||
|
|
@ -253,11 +259,11 @@ user_pref("browser.sessionstore.privacy_level", 2);
|
|||
user_pref("media.eme.enabled", false);
|
||||
user_pref("browser.eme.ui.enabled", true);
|
||||
|
||||
user_pref("browser.ml.chat.enabled", false);
|
||||
user_pref("browser.ml.chat.enabled", true);
|
||||
|
||||
/****************************************************************************
|
||||
* SECTION: SMOOTHFOX *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
// visit https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js
|
||||
// Enter your scrolling overrides below this line:
|
||||
|
||||
|
|
@ -274,7 +280,6 @@ user_pref("general.smoothScroll.currentVelocityWeighting", "1");
|
|||
user_pref("general.smoothScroll.stopDecelerationWeighting", "1");
|
||||
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
* END: BETTERFOX *
|
||||
****************************************************************************/
|
||||
****************************************************************************/
|
||||
|
|
|
|||
Loading…
Reference in a new issue