]>
Commit | Line | Data |
---|---|---|
c0eb0bfb | 1 | // enable sync |
2 | pref("identity.fxaccounts.enabled", true); | |
6f704085 | 3 | // sync ui |
4 | pref("services.sync.prefs.sync.browser.uiCustomization.state", true); | |
c0eb0bfb | 5 | |
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); | |
11 | ||
12 | // remember more undos | |
13 | pref("browser.sessionstore.max_tabs_undo", 50); | |
14 | pref("browser.sessionstore.max_windows_undo", 3); | |
15 | ||
16 | pref("browser.tabs.closeWindowWithLastTab", false); | |
17 | ||
18 | pref("browser.altClickSave", true); | |
19 | pref("zoom.minPercent", 10); | |
20 | ||
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"); | |
30 | ||
31 | // enable chrome | |
32 | pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); |