forked from d3cim/mobile_user.js
Update 'user.js (less connections)'
This commit is contained in:
parent
06d5a58f8e
commit
b79fbb99fd
|
@ -959,6 +959,11 @@ user_pref("privacy.purge_trackers.enabled", false);
|
|||
// https://groups.google.com/forum/#!topic/mozilla.dev.platform/BdFOMAuCGW8/discussion
|
||||
user_pref("permissions.delegation.enabled", false);
|
||||
// -------------------------------------
|
||||
// Pref : enable "window.name" protection [FF82+]
|
||||
// If a new page from another domain is loaded into a tab, then window.name is set to an empty string. The original
|
||||
// string is restored if the tab reverts back to the original page. This change prevents some cross-site attacks ***/
|
||||
user_pref("privacy.window.name.update.enabled", true);
|
||||
// -------------------------------------
|
||||
// Pref : Disable the default checkedness for "Save card and address to Firefox" checkboxes
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=1477106
|
||||
user_pref("dom.payments.defaults.saveAddress", false);
|
||||
|
@ -2203,6 +2208,7 @@ user_pref("features.normandy-remote-settings.enabled", false); // [DESKTOP]
|
|||
user_pref("extensions.formautofill.addresses.enabled", false); // [DESKTOP]
|
||||
user_pref("extensions.formautofill.available", "off"); // [DESKTOP]
|
||||
user_pref("extensions.formautofill.creditCards.enabled", false); // [DESKTOP]
|
||||
user_pref("extensions.formautofill.creditCards.available", false); // [DESKTOP]
|
||||
user_pref("extensions.formautofill.heuristics.enabled", false); // [DESKTOP]
|
||||
// -------------------------------------
|
||||
// Pref : Disable ExperimentManager and relative API
|
||||
|
@ -2273,6 +2279,9 @@ user_pref("dom.storageManager.enabled", false);
|
|||
// https://developer.mozilla.org/en-US/docs/Web/API/Storage_Access_API
|
||||
user_pref("dom.storage_access.enabled", false);
|
||||
// -------------------------------------
|
||||
// Pref : Enable Local Storage Next Generation (LSNG) [FF65+] ***/
|
||||
user_pref("dom.storage.next_gen", true);
|
||||
// -------------------------------------
|
||||
// Pref : Disable download history
|
||||
user_pref("browser.download.manager.retention", 0); // [DESKTOP]
|
||||
// -------------------------------------
|
||||
|
|
Loading…
Reference in New Issue