]> git.sev.monster Git - dotfiles.git/blob - librewolf/librewolf.overrides.cfg
add librewolf to installer
[dotfiles.git] / librewolf / librewolf.overrides.cfg
1 // enable sync
2 pref("identity.fxaccounts.enabled", true);
3
4 // enable session saving
5 pref("privacy.clearOnShutdown.history", false);
6 pref("privacy.clearOnShutdown.downloads", false);
7 pref("privacy.clearOnShutdown.cookies", false);
8 pref("browser.startup.page", 3);
9
10 // remember more undos
11 pref("browser.sessionstore.max_tabs_undo", 50);
12 pref("browser.sessionstore.max_windows_undo", 3);
13
14 pref("browser.tabs.closeWindowWithLastTab", false);
15
16 pref("browser.altClickSave", true);
17 pref("zoom.minPercent", 10);
18
19 // prefer FPP over RFP an allow color-scheme and timezone
20 // NOTE: this does not work toward preventing unique fingerprint, but FPP is
21 //       still better than nothing and might fool simple trackers. advanced
22 //       ones are probably not beatable regardless so it's not a big deal.
23 pref("privacy.resistFingerprinting", false);
24 pref("privacy.resistFingerprinting.pbmode", false);
25 pref("privacy.fingerprintingProtection", true);
26 pref("privacy.fingerprintingProtection.pbmode", true);
27 pref("privacy.fingerprintingProtection.overrides", "+AllTargets,-CSSPrefersColorScheme,-JSDateTimeUTC");
28
29 // enable chrome
30 pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
This page took 0.029222 seconds and 4 git commands to generate.