mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 15:40:48 +05:30
userjs Oct 2022 (#75)
* reorder speculative connections * add PROXY / SOCKS / IPv6 * note for smoothfox
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* BetterFox *
|
* BetterFox *
|
||||||
* "Ad meliora" *
|
* "Ad meliora" *
|
||||||
* version: October 2022 *
|
* version: October 2022b *
|
||||||
* url: https://github.com/yokoffing/Better-Fox *
|
* url: https://github.com/yokoffing/Better-Fox *
|
||||||
* license: https://github.com/yokoffing/Better-Fox/blob/master/LICENSE *
|
* license: https://github.com/yokoffing/Better-Fox/blob/master/LICENSE *
|
||||||
* README: https://github.com/yokoffing/Better-Fox/blob/master/README.md *
|
* README: https://github.com/yokoffing/Better-Fox/blob/master/README.md *
|
||||||
@@ -70,14 +70,14 @@ user_pref("browser.sessionstore.privacy_level", 2);
|
|||||||
user_pref("browser.pagethumbnails.capturing_disabled", true);
|
user_pref("browser.pagethumbnails.capturing_disabled", true);
|
||||||
|
|
||||||
/** SPECULATIVE CONNECTIONS ***/
|
/** SPECULATIVE CONNECTIONS ***/
|
||||||
user_pref("network.predictor.enabled", false);
|
user_pref("browser.newtab.preload", false);
|
||||||
user_pref("network.predictor.enable-prefetch", false);
|
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("browser.urlbar.speculativeConnect.enabled", false);
|
||||||
user_pref("network.prefetch-next", false);
|
|
||||||
user_pref("network.http.speculative-parallel-limit", 0);
|
|
||||||
user_pref("browser.newtab.preload", false);
|
|
||||||
user_pref("browser.places.speculativeConnect.enabled", false);
|
user_pref("browser.places.speculativeConnect.enabled", false);
|
||||||
|
user_pref("network.prefetch-next", false);
|
||||||
|
user_pref("network.predictor.enabled", false);
|
||||||
|
user_pref("network.predictor.enable-prefetch", false);
|
||||||
|
|
||||||
/** SEARCH / URL BAR ***/
|
/** SEARCH / URL BAR ***/
|
||||||
user_pref("browser.search.separatePrivateDefault", true);
|
user_pref("browser.search.separatePrivateDefault", true);
|
||||||
@@ -95,6 +95,11 @@ user_pref("dom.security.https_only_mode_error_page_user_suggestions", true);
|
|||||||
/** DNS-over-HTTPS (DOH) ***/
|
/** DNS-over-HTTPS (DOH) ***/
|
||||||
user_pref("network.dns.skipTRR-when-parental-control-enabled", false);
|
user_pref("network.dns.skipTRR-when-parental-control-enabled", false);
|
||||||
|
|
||||||
|
/** PROXY / SOCKS / IPv6 ***/
|
||||||
|
user_pref("network.proxy.socks_remote_dns", true);
|
||||||
|
user_pref("network.file.disable_unc_paths", true);
|
||||||
|
user_pref("network.gio.supported-protocols", "");
|
||||||
|
|
||||||
/** PASSWORDS AND AUTOFILL ***/
|
/** PASSWORDS AND AUTOFILL ***/
|
||||||
user_pref("signon.formlessCapture.enabled", false);
|
user_pref("signon.formlessCapture.enabled", false);
|
||||||
user_pref("signon.privateBrowsingCapture.enabled", false);
|
user_pref("signon.privateBrowsingCapture.enabled", false);
|
||||||
@@ -243,23 +248,13 @@ user_pref("dom.popup_allowed_events", "click dblclick");
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: SMOOTHFOX *
|
* SECTION: SMOOTHFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
/** Uncomment each pref to enable ***/
|
// see https://github.com/yokoffing/BetterFox/blob/master/SmoothFox.js
|
||||||
|
// Enter your scrolling prefs below this line:
|
||||||
// user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12);
|
|
||||||
// user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
|
||||||
// user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
|
|
||||||
// user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650);
|
|
||||||
// user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25);
|
|
||||||
// user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", 2.0);
|
|
||||||
// user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250);
|
|
||||||
// user_pref("general.smoothScroll.currentVelocityWeighting", 1.0);
|
|
||||||
// user_pref("general.smoothScroll.stopDecelerationWeighting", 1.0);
|
|
||||||
// user_pref("mousewheel.default.delta_multiplier_y", 280);
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* START: MY OVERRIDES *
|
* START: MY OVERRIDES *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
/** Enter your personal prefs below this line ***/
|
// Enter your personal prefs below this line:
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* END: BETTERFOX *
|
* END: BETTERFOX *
|
||||||
|
|||||||
Reference in New Issue
Block a user