forked from d3cim/mozilla.cfg
Upload files to 'config'
This commit is contained in:
parent
1145764d61
commit
dab1523e48
|
@ -313,7 +313,7 @@ defaultPref("network.trr.confirmationNS", "");
|
|||
// lockPref("keyword.enabled", false);
|
||||
// -------------------------------------
|
||||
// Disable location bar domain guessing
|
||||
lockPref("browser.fixup.alternate.enabled", false);
|
||||
lockPref("browser.fixup.alternate.enabled", false);; // [DEFAULT: false FF104+]
|
||||
// -------------------------------------
|
||||
// Disable live search suggestions
|
||||
defaultPref("browser.search.suggest.enabled", false);
|
||||
|
@ -430,8 +430,8 @@ defaultPref("security.OCSP.require", false);
|
|||
// 2=detect Family Safety mode and import the root
|
||||
lockPref("security.family_safety.mode", 0);
|
||||
// -------------------------------------
|
||||
// Enable strict pinning
|
||||
// PKP (Public Key Pinning) 0=disabled, 1=allow user MiTM (such as your antivirus), 2=strict
|
||||
// Enable strict PKP (Public Key Pinning)
|
||||
// 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict
|
||||
defaultPref("security.cert_pinning.enforcement_level", 2);
|
||||
// -------------------------------------
|
||||
// Disable CRLite [FF73+]
|
||||
|
@ -662,8 +662,16 @@ lockPref("privacy.partition.serviceWorkers", true);
|
|||
// SHUTDOWN & SANITIZING
|
||||
// >>>>>>>>>>>>>>>>>>>>>
|
||||
//
|
||||
// SANITIZE ON SHUTDOWN : ALLOWS COOKIES + SITE DATA EXCEPTIONS FF102+
|
||||
// COOKIES + SITE DATA : ALLOWS EXCEPTIONS
|
||||
//
|
||||
// Delete cookies and site data on exit
|
||||
// 0=keep until they expire (default), 2=keep until you close Firefox
|
||||
defaultPref("network.cookie.lifetimePolicy", 2);
|
||||
// -------------------------------------
|
||||
// Delete cache on exit [FF96+]
|
||||
// defaultPref("privacy.clearsitedata.cache.enabled", true);
|
||||
//
|
||||
// SANITIZE ON SHUTDOWN : ALL OR NOTHING
|
||||
// Enable Firefox to clear items on shutdown
|
||||
defaultPref("privacy.sanitize.sanitizeOnShutdown", true);
|
||||
// -------------------------------------
|
||||
|
@ -673,12 +681,9 @@ defaultPref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true]
|
|||
defaultPref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true]
|
||||
defaultPref("privacy.clearOnShutdown.history", true); // [DEFAULT: true]
|
||||
defaultPref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true]
|
||||
defaultPref("privacy.clearOnShutdown.offlineApps", true);
|
||||
defaultPref("privacy.clearOnShutdown.offlineApps", true); // [DEFAULT: false]
|
||||
defaultPref("privacy.clearOnShutdown.cookies", true);
|
||||
// defaultPref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false]
|
||||
// -------------------------------------
|
||||
// // Delete cache on exit [FF96+]
|
||||
// defaultPref("privacy.clearsitedata.cache.enabled", true);
|
||||
//
|
||||
// SANITIZE MANUAL: ALL OR NOTHING
|
||||
//
|
||||
|
@ -691,8 +696,8 @@ defaultPref("privacy.cpd.sessions", true); // [DEFAULT: true]
|
|||
defaultPref("privacy.cpd.offlineApps", true); // [DEFAULT: false]
|
||||
defaultPref("privacy.cpd.cookies", true);
|
||||
// defaultPref("privacy.cpd.downloads", true); // not used
|
||||
// defaultPref("privacy.cpd.passwords", false); // [DEFAULT: false] not listed
|
||||
// defaultPref("privacy.cpd.siteSettings", false); // [DEFAULT: false]
|
||||
// defaultPref("privacy.cpd.passwords", false);
|
||||
// defaultPref("privacy.cpd.siteSettings", false);
|
||||
// -------------------------------------
|
||||
// Clear Session Restore data when sanitizing on shutdown or manually [FF34+]
|
||||
// lockPref("privacy.clearOnShutdown.openWindows", true);
|
||||
|
@ -1154,10 +1159,6 @@ defaultPref("security.ask_for_password", 2);
|
|||
// Set how long in minutes Firefox should remember the primary password
|
||||
defaultPref("security.password_lifetime", 5); // [DEFAULT: 30]
|
||||
// -------------------------------------
|
||||
// Delete cookies and site data on exit - replaced by sanitizeOnShutdown*
|
||||
// 0=keep until they expire (default), 2=keep until you close Firefox
|
||||
defaultPref("network.cookie.lifetimePolicy", 2);
|
||||
// -------------------------------------
|
||||
// Enforce Local Storage Next Generation (LSNG) [FF65+]
|
||||
defaultPref("dom.storage.next_gen", true); // [DEFAULT: true FF92+]
|
||||
//
|
Loading…
Reference in New Issue