LibreAwoo: attempt to be family member friendly (autoconfig)

This commit is contained in:
Aminda Suomalainen 2024-03-31 08:42:30 +03:00
parent 1b09a0eaaf
commit 23fab338cf
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -16,8 +16,8 @@ pref("autoadmin.offline_failover", true);
pref("autoadmin.failover_to_cached", true); pref("autoadmin.failover_to_cached", true);
// Interface language // Interface language
pref("intl.locale.requested", "eo"); //pref("intl.locale.requested", "eo");
pref("intl.regional_prefs.use_os_locales", false); //pref("intl.regional_prefs.use_os_locales", false);
// via https://www.ghacks.net/2017/10/27/how-to-enable-firefox-webextensions-on-mozilla-websites/ // via https://www.ghacks.net/2017/10/27/how-to-enable-firefox-webextensions-on-mozilla-websites/
pref("extensions.webextensions.restrictedDomains", ""); pref("extensions.webextensions.restrictedDomains", "");
@ -60,13 +60,13 @@ pref("javascript.use_us_english_locale", true);
// the fingerprinting game. Then again as sending empty accept-language is // the fingerprinting game. Then again as sending empty accept-language is
// valid ("just give me any"), what if I request only Finnish considering the // valid ("just give me any"), what if I request only Finnish considering the
// RFC discourages sending rejection if no language matches. // RFC discourages sending rejection if no language matches.
//pref("intl.accept_languages", "fi"); defaultPref("intl.accept_languages", "fi, en");
// Apparently even not sending accept-language is more common than Finnish, // Apparently even not sending accept-language is more common than Finnish,
// so let's do that. Any language is fine, at least I am not promoting English // so let's do that. Any language is fine, at least I am not promoting English
// to every web site I visit. // to every web site I visit.
//pref("intl.accept_languages", ""); //pref("intl.accept_languages", "");
// Mi ne plu pensas ĉi tion estas serioza. // Mi ne plu pensas ĉi tion estas serioza.
pref("intl.accept_languages", "eo, fi"); //pref("intl.accept_languages", "eo, fi");
// No JavaScript allowed in internal pdf viewer // No JavaScript allowed in internal pdf viewer
pref("pdfjs.enableScripting", false); pref("pdfjs.enableScripting", false);
@ -130,10 +130,10 @@ pref("browser.cache.disk.enable", true);
pref("browser.cache.memory.enable", true); pref("browser.cache.memory.enable", true);
// Start from homepage, don't restore the previous session (excluding pinned tabs)' // Start from homepage, don't restore the previous session (excluding pinned tabs)'
pref("browser.startup.page", 1); //pref("browser.startup.page", 1);
// Simplified DDG experience without prompts for extension and all // Simplified DDG experience without prompts for extension and all
//pref("browser.startup.homepage", "https://start.duckduckgo.com"); //pref("browser.startup.homepage", "https://start.duckduckgo.com");
pref("browser.startup.homepage", "about:mozilla"); defaultPref("browser.startup.homepage", "about:mozilla");
// https://codeberg.org/librewolf/settings/src/branch/master/librewolf.cfg begins // https://codeberg.org/librewolf/settings/src/branch/master/librewolf.cfg begins
@ -334,7 +334,7 @@ pref("extensions.webcompat-reporter.newIssueEndpoint", "");
* disable the default password manager built into the browser, including its autofill * disable the default password manager built into the browser, including its autofill
* capabilities and formless login capture. * capabilities and formless login capture.
*/ */
pref("signon.rememberSignons", false); //pref("signon.rememberSignons", false);
pref("signon.autofillForms", false); pref("signon.autofillForms", false);
pref("extensions.formautofill.addresses.enabled", false); pref("extensions.formautofill.addresses.enabled", false);
pref("extensions.formautofill.creditCards.enabled", false); pref("extensions.formautofill.creditCards.enabled", false);