2 pref("identity.fxaccounts.enabled", true);
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);
10 // remember more undos
11 pref("browser.sessionstore.max_tabs_undo", 50);
12 pref("browser.sessionstore.max_windows_undo", 3);
14 pref("browser.tabs.closeWindowWithLastTab", false);
16 pref("browser.altClickSave", true);
17 pref("zoom.minPercent", 10);
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");
30 pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);