]>
Commit | Line | Data |
---|---|---|
1 | // enable sync | |
2 | pref("identity.fxaccounts.enabled", true); | |
3 | // sync ui | |
4 | pref("services.sync.prefs.sync.browser.uiCustomization.state", true); | |
5 | ||
6 | // remember more undos | |
7 | pref("browser.sessionstore.max_tabs_undo", 50); | |
8 | pref("browser.sessionstore.max_windows_undo", 3); | |
9 | // keep browser open without tabs | |
10 | pref("browser.tabs.closeWindowWithLastTab", false); | |
11 | // enable niche features | |
12 | pref("browser.altClickSave", true); | |
13 | pref("zoom.minPercent", 10); | |
14 | pref("middlemouse.paste", true); | |
15 | ||
16 | // prefer FPP over RFP | |
17 | pref("privacy.resistFingerprinting", false); | |
18 | pref("privacy.resistFingerprinting.pbmode", false); | |
19 | pref("privacy.fingerprintingProtection", true); | |
20 | pref("privacy.fingerprintingProtection.pbmode", true); | |
21 | // 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.fingerprintingProtection.overrides", "+AllTargets,-CSSPrefersColorScheme,-JSDateTimeUTC"); | |
26 | ||
27 | // enable chrome | |
28 | pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); |