Upload files to ''

This commit is contained in:
Narsil 2022-07-23 11:41:22 +00:00
parent dce0821a61
commit 53a505578f
1 changed files with 16 additions and 15 deletions

31
user.js
View File

@ -307,7 +307,7 @@ user_pref("network.trr.confirmationNS", "");
// user_pref("keyword.enabled", false); // user_pref("keyword.enabled", false);
// ------------------------------------- // -------------------------------------
// Disable location bar domain guessing // Disable location bar domain guessing
user_pref("browser.fixup.alternate.enabled", false); user_pref("browser.fixup.alternate.enabled", false); // [DEFAULT: false FF104+]
// Disable live search suggestions // Disable live search suggestions
user_pref("browser.search.suggest.enabled", false); user_pref("browser.search.suggest.enabled", false);
user_pref("browser.urlbar.suggest.searches", false); user_pref("browser.urlbar.suggest.searches", false);
@ -423,8 +423,8 @@ user_pref("security.OCSP.require", false);
// 2=detect Family Safety mode and import the root // 2=detect Family Safety mode and import the root
user_pref("security.family_safety.mode", 0); user_pref("security.family_safety.mode", 0);
// ------------------------------------- // -------------------------------------
// Enable strict pinning // Enable strict PKP (Public Key Pinning)
// PKP (Public Key Pinning) 0=disabled, 1=allow user MiTM (such as your antivirus), 2=strict // 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict
user_pref("security.cert_pinning.enforcement_level", 2); user_pref("security.cert_pinning.enforcement_level", 2);
// ------------------------------------- // -------------------------------------
// Disable CRLite [FF73+] // Disable CRLite [FF73+]
@ -655,8 +655,16 @@ user_pref("privacy.partition.serviceWorkers", true);
// SHUTDOWN & SANITIZING // 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
user_pref("network.cookie.lifetimePolicy", 2);
// -------------------------------------
// Delete cache on exit [FF96+]
// user_pref("privacy.clearsitedata.cache.enabled", true);
//
// SANITIZE ON SHUTDOWN : ALL OR NOTHING
// Enable Firefox to clear items on shutdown // Enable Firefox to clear items on shutdown
user_pref("privacy.sanitize.sanitizeOnShutdown", true); user_pref("privacy.sanitize.sanitizeOnShutdown", true);
// ------------------------------------- // -------------------------------------
@ -666,12 +674,9 @@ user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true]
user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true]
user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true]
user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true]
user_pref("privacy.clearOnShutdown.offlineApps", true); user_pref("privacy.clearOnShutdown.offlineApps", true); // [DEFAULT: false]
user_pref("privacy.clearOnShutdown.cookies", true); user_pref("privacy.clearOnShutdown.cookies", true);
// user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] // user_pref("privacy.clearOnShutdown.siteSettings", false);
// -------------------------------------
// Delete cache on exit [FF96+]
// user_pref("privacy.clearsitedata.cache.enabled", true);
// //
// SANITIZE MANUAL: ALL OR NOTHING // SANITIZE MANUAL: ALL OR NOTHING
// //
@ -684,8 +689,8 @@ user_pref("privacy.cpd.sessions", true); // [DEFAULT: true]
user_pref("privacy.cpd.offlineApps", true); // [DEFAULT: false] user_pref("privacy.cpd.offlineApps", true); // [DEFAULT: false]
user_pref("privacy.cpd.cookies", true); user_pref("privacy.cpd.cookies", true);
// user_pref("privacy.cpd.downloads", true); // not used // user_pref("privacy.cpd.downloads", true); // not used
// user_pref("privacy.cpd.passwords", false); // [DEFAULT: false] not listed // user_pref("privacy.cpd.passwords", false);
// user_pref("privacy.cpd.siteSettings", false); // [DEFAULT: false] // user_pref("privacy.cpd.siteSettings", false);
// ------------------------------------- // -------------------------------------
// Clear Session Restore data when sanitizing on shutdown or manually [FF34+] // Clear Session Restore data when sanitizing on shutdown or manually [FF34+]
// user_pref("privacy.clearOnShutdown.openWindows", true); // user_pref("privacy.clearOnShutdown.openWindows", true);
@ -1147,10 +1152,6 @@ user_pref("security.ask_for_password", 2);
// Set how long in minutes Firefox should remember the primary password // Set how long in minutes Firefox should remember the primary password
user_pref("security.password_lifetime", 5); // [DEFAULT: 30] user_pref("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
user_pref("network.cookie.lifetimePolicy", 2);
// -------------------------------------
// Enforce Local Storage Next Generation (LSNG) [FF65+] // Enforce Local Storage Next Generation (LSNG) [FF65+]
user_pref("dom.storage.next_gen", true); // [DEFAULT: true FF92+] user_pref("dom.storage.next_gen", true); // [DEFAULT: true FF92+]
// //