]>
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); | |
65ec8a63 | 5 | // allow different extension enablement |
6 | pref("services.sync.addons.ignoreUserEnabledChanges", true); | |
c0eb0bfb | 7 | |
c0eb0bfb | 8 | // remember more undos |
9 | pref("browser.sessionstore.max_tabs_undo", 50); | |
10 | pref("browser.sessionstore.max_windows_undo", 3); | |
888d9072 | 11 | // keep browser open without tabs |
c0eb0bfb | 12 | pref("browser.tabs.closeWindowWithLastTab", false); |
888d9072 | 13 | // enable niche features |
c0eb0bfb | 14 | pref("browser.altClickSave", true); |
15 | pref("zoom.minPercent", 10); | |
888d9072 | 16 | pref("middlemouse.paste", true); |
c0eb0bfb | 17 | |
888d9072 | 18 | // prefer FPP over RFP |
c0eb0bfb | 19 | pref("privacy.resistFingerprinting", false); |
20 | pref("privacy.resistFingerprinting.pbmode", false); | |
21 | pref("privacy.fingerprintingProtection", true); | |
22 | pref("privacy.fingerprintingProtection.pbmode", true); | |
888d9072 | 23 | // allow color-scheme and timezone |
24 | // NOTE: this does not work toward preventing unique fingerprint, but FPP is | |
25 | // still better than nothing and might fool simple trackers. advanced | |
26 | // ones are probably not beatable regardless so it's not a big deal. | |
c0eb0bfb | 27 | pref("privacy.fingerprintingProtection.overrides", "+AllTargets,-CSSPrefersColorScheme,-JSDateTimeUTC"); |
28 | ||
29 | // enable chrome | |
30 | pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); |