2 pref("identity.fxaccounts.enabled", true);
4 pref("services.sync.prefs.sync.browser.uiCustomization.state", true);
6 // enable session saving
7 pref("privacy.clearOnShutdown.history", false);
8 pref("privacy.clearOnShutdown.downloads", false);
9 pref("privacy.clearOnShutdown.cookies", false);
10 pref("browser.startup.page", 3);
12 // remember more undos
13 pref("browser.sessionstore.max_tabs_undo", 50);
14 pref("browser.sessionstore.max_windows_undo", 3);
16 pref("browser.tabs.closeWindowWithLastTab", false);
18 pref("browser.altClickSave", true);
19 pref("zoom.minPercent", 10);
21 // prefer FPP over RFP an allow color-scheme and timezone
22 // NOTE: this does not work toward preventing unique fingerprint, but FPP is
23 // still better than nothing and might fool simple trackers. advanced
24 // ones are probably not beatable regardless so it's not a big deal.
25 pref("privacy.resistFingerprinting", false);
26 pref("privacy.resistFingerprinting.pbmode", false);
27 pref("privacy.fingerprintingProtection", true);
28 pref("privacy.fingerprintingProtection.pbmode", true);
29 pref("privacy.fingerprintingProtection.overrides", "+AllTargets,-CSSPrefersColorScheme,-JSDateTimeUTC");
32 pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);