forked from d3cim/mobile_user.js
Update 'test'
This commit is contained in:
parent
cf90beca44
commit
293645c468
26
test
26
test
|
@ -131,6 +131,17 @@ user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF]
|
|||
// >>>>>>>>>>>>>>>>>>>>>
|
||||
// Disable auto-CHECKING for extension and theme updates ***/
|
||||
user_pref("extensions.update.enabled", false);
|
||||
user_pref("extensions.autoupdate.enabled", true);
|
||||
// -------------------------------------
|
||||
// Decrease system information leakage to Mozilla extensions update servers
|
||||
user_pref("extensions.update.url", "https://versioncheck-bg.addons.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=en-US¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE%"); // [URL SANITIZED]
|
||||
user_pref("extensions.update.background.url", "https://versioncheck-bg.addons.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=en-US¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE%"); // [URL SANITIZED]
|
||||
// -------------------------------------
|
||||
// Pref : Decrease system information leakage to Mozilla addons update servers
|
||||
user_pref("extensions.getAddons.browseAddons", "https://addons.mozilla.org/en-US/android/collections/4757633/mob/?page=1&collection_sort=-popularity"); // [URL SANITIZED]
|
||||
user_pref("extensions.getAddons.get.url", "https://services.addons.mozilla.org/api/v3/addons/search/?guid=%IDS%&lang=en-US"); // [URL SANITIZED]
|
||||
user_pref("extensions.getAddons.link.url", "https://addons.mozilla.org/en-US/firefox/"); // [URL SANITIZED]
|
||||
user_pref("extensions.getAddons.search.browseURL", "https://addons.mozilla.org/en-US/android/search?q=%TERMS%&platform=%OS%&appver=%VERSION%"); // [URL SANITIZED]
|
||||
// -------------------------------------
|
||||
// Disable auto-INSTALLING Firefox updates [NON-WINDOWS FF65+]
|
||||
// [NOTE] In FF65+ on Windows this SETTING (below) is now stored in a file and the pref was removed
|
||||
|
@ -325,8 +336,19 @@ user_pref("privacy.trackingprotection.fingerprinting.enabled", false);
|
|||
user_pref("privacy.trackingprotection.socialtracking.enabled", false);
|
||||
user_pref("privacy.trackingprotection.testing.report_blocked_node", false);
|
||||
user_pref("privacy.socialtracking.block_cookies.enabled", false);
|
||||
//]
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// -------------------------------------
|
||||
// Disable SSDP (Simple Service Discovery Protocol)
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=1111967
|
||||
user_pref("browser.casting.enabled", false);
|
||||
// -------------------------------------
|
||||
// Disable tickle time under wifi network
|
||||
// It transmit UDP busy-work to the LAN when anticipating low latency network reads and on wifi to mitigate /// 802.11 Power Save Polling delays
|
||||
// If you're on wifi and an IPv4 DHCP network we will send 0 length UDP packets at port 4886 of your gateway // at the default rate of 60hz for 400ms from the start of the transaction in an attempt to improve RTT during the critical early phases
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=888268
|
||||
user_pref("network.tickle-wifi.enabled", false);
|
||||
//
|
||||
//
|
||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// SAFE BROWSING (SB)
|
||||
// >>>>>>>>>>>>>>>>>>>>>
|
||||
// Disable SB (Safe Browsing)
|
||||
|
|
Loading…
Reference in New Issue