Update 'config/mozilla.cfg'

This commit is contained in:
Narsil 2022-09-12 08:18:02 +00:00
parent c5aae7d77b
commit 56d420153c
1 changed files with 19 additions and 12 deletions

View File

@ -339,13 +339,6 @@ defaultPref("browser.urlbar.suggest.engines", false);
// Disable search and form history
defaultPref("browser.formfill.enable", false);
// -------------------------------------
// Disable Form Autofill
defaultPref("extensions.formautofill.addresses.enabled", false); // [FF55+]
defaultPref("extensions.formautofill.available", "off"); // [FF56+]
defaultPref("extensions.formautofill.creditCards.available", false); // [FF57+]
defaultPref("extensions.formautofill.creditCards.enabled", false); // [FF56+]
defaultPref("extensions.formautofill.heuristics.enabled", false); // [FF55+]
// -------------------------------------
// Disable coloring of visited links
lockPref("layout.css.visited_links_enabled", false);
//
@ -482,9 +475,6 @@ lockPref("browser.xul.error_pages.expert_bad_cert", true);
// FONTS
// >>>>>>>>>>>>>>>>>>>>>
//
// Disable rendering of SVG OpenType fonts
defaultPref("gfx.font_rendering.opentype_svg.enabled", false);
// -------------------------------------
// Limit font visibility (Windows, Mac, some Linux) [FF94+]
// 1=only base system fonts, 2=also fonts from optional language packs, 3=also user-installed fonts
// lockPref("layout.css.font-visibility.private", 1);
@ -650,7 +640,10 @@ lockPref("browser.contentblocking.category", "strict");
// lockPref("privacy.antitracking.enableWebcompat", false);
// -------------------------------------
// Enable state partitioning of service workers [FF96+]
lockPref("privacy.partition.serviceWorkers", true);
lockPref("privacy.partition.serviceWorkers", true); // [DEFAULT: true FF105+]
// -------------------------------------
// Enable APS (Always Partitioning Storage) [FF104+]
lockPref("privacy.partition.always_partition_third_party_non_cookie_storage", true);
//
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// SHUTDOWN & SANITIZING
@ -809,6 +802,11 @@ defaultPref("places.history.enabled", false);
// 0=desktop, 1=downloads (default), 2=last used
// lockPref("browser.download.folderList", 2);
// -------------------------------------
// Disable Form Autofill
defaultPref("extensions.formautofill.addresses.enabled", false); // [FF55+]
defaultPref("extensions.formautofill.creditCards.enabled", false); // [FF56+]
defaultPref("extensions.formautofill.heuristics.enabled", false); // [FF55+]
// -------------------------------------
// Enable Site Isolation
defaultPref("fission.autostart", true);
defaultPref("gfx.webrender.all", true);
@ -836,6 +834,9 @@ defaultPref("javascript.options.jit_trustedprincipals", true); // [FF75+] [HIDDE
// -------------------------------------
// Disable WebAssembly [FF52+]
defaultPref("javascript.options.wasm", false);
// -------------------------------------
// Disable rendering of SVG OpenType fonts
defaultPref("gfx.font_rendering.opentype_svg.enabled", false);
//
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// DON'T TOUCH
@ -871,7 +872,7 @@ lockPref("security.tls.version.enable-deprecated", false); // [DEFAULT: false]
// Enforce disabling of Web Compatibility Reporter [FF56+]
lockPref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false]
// -------------------------------------
// PrefsCleaner: prefsCleaner: reset items removed from arkenfox FF92+
// PrefsCleaner: reset items removed from arkenfox FF92+
// lockPref("browser.urlbar.trimURLs", "");
// lockPref("dom.caches.enabled", "");
// lockPref("dom.storageManager.enabled", "");
@ -884,6 +885,12 @@ lockPref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false]
// lockPref("privacy.firstparty.isolate.use_site", "");
// lockPref("privacy.window.name.update.enabled", "");
// lockPref("security.insecure_connection_text.enabled", "");
// -------------------------------------
// PrefsCleaner: reset items removed from arkenfox FF102+
defaultPref("extensions.formautofill.available", "");
defaultPref("extensions.formautofill.addresses.supported", "");
defaultPref("extensions.formautofill.creditCards.available", "");
defaultPref("extensions.formautofill.creditCards.supported", "");
//
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// DON'T BOTHER