58 lines
2.6 KiB
INI
58 lines
2.6 KiB
INI
// From Librewolf FAQ
|
|
//defaultPref("identity.fxaccounts.enabled", true);
|
|
//defaultPref("browser.sessionstore.resume_from_crash", false);
|
|
|
|
/* Migrated from Arkenfox overrides */
|
|
|
|
/* Avoid non-playing, see https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1874808 */
|
|
defaultPref("media.autoplay.blocking_policy", 1);
|
|
|
|
/* Delete everything on close - fine-tune to your liking */
|
|
//defaultPref("privacy.clearOnShutdown.cache", true);
|
|
//defaultPref("privacy.clearOnShutdown.cookies", true);
|
|
//defaultPref("privacy.clearOnShutdown.downloads", true);
|
|
//defaultPref("privacy.clearOnShutdown.formdata", true);
|
|
//defaultPref("privacy.clearOnShutdown.history", true);
|
|
//defaultPref("privacy.clearOnShutdown.offlineApps", true);
|
|
//defaultPref("privacy.clearOnShutdown.openWindows", true);
|
|
//defaultPref("privacy.clearOnShutdown.sessions", true);
|
|
//defaultPref("privacy.clearOnShutdown.siteSettings", true);
|
|
//defaultPref("privacy.clearOnShutdown_v2.cache", true);
|
|
//defaultPref("privacy.clearOnShutdown_v2.cookiesAndStorage", true);
|
|
//defaultPref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", true);
|
|
//defaultPref("privacy.clearOnShutdown_v2.siteSettings", true);
|
|
|
|
/* Disable logins */
|
|
defaultPref("services.sync.engine.passwords", false);
|
|
|
|
/* Disable translations */
|
|
defaultPref("browser.translations.automaticallyPopup", false);
|
|
defaultPref("browser.translations.enable", false);
|
|
|
|
/* Enable faster scroll */
|
|
defaultPref("general.smoothScroll", false);
|
|
defaultPref("general.smoothScroll.pages", false);
|
|
defaultPref("mousewheel.min_line_scroll_amount", 40);
|
|
|
|
/* Enable green icons again */
|
|
defaultPref("security.secure_connection_icon_color_gray", false);
|
|
defaultPref("security.insecure_connection_icon.enabled", true);
|
|
defaultPref("security.insecure_connection_icon.pbmode.enabled", true);
|
|
defaultPref("security.insecure_connection_text.enabled", true);
|
|
defaultPref("security.insecure_connection_text.pbmode.enabled", true);
|
|
|
|
/* DNS over HTTPS
|
|
adjust the following to your liking
|
|
0 = use system DNS, 2 = use DNS-over-HTTPS resolver, select one in UI under network, otherwise you might end up with cloudflare
|
|
*/
|
|
defaultPref("network.trr.mode", 1);
|
|
defaultPref("network.trr.uri", "");
|
|
defaultPref("network.trr.resolvers", '[]');
|
|
defaultPref("network.trr.excluded-domains", "fritz.box,fritz.nas");
|
|
defaultPref("network.dns.disableIPv6", false);
|
|
defaultPref("network.dns.disablePrefetch", false);
|
|
|
|
/* override recipe: RFP is not for me ***/
|
|
//defaultPref("privacy.resistFingerprinting", false); // 4501
|
|
//defaultPref("privacy.resistFingerprinting.letterboxing", false); // 4504 [pointless if not using RFP]
|
|
//defaultPref("webgl.disabled", false); // 4520 [mostly pointless if not using RFP]
|