]>
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 | |
c0eb0bfb | 6 | // remember more undos |
7 | pref("browser.sessionstore.max_tabs_undo", 50); | |
8 | pref("browser.sessionstore.max_windows_undo", 3); | |
888d9072 | 9 | // keep browser open without tabs |
c0eb0bfb | 10 | pref("browser.tabs.closeWindowWithLastTab", false); |
888d9072 | 11 | // enable niche features |
c0eb0bfb | 12 | pref("browser.altClickSave", true); |
13 | pref("zoom.minPercent", 10); | |
888d9072 | 14 | pref("middlemouse.paste", true); |
c0eb0bfb | 15 | |
888d9072 | 16 | // prefer FPP over RFP |
c0eb0bfb | 17 | pref("privacy.resistFingerprinting", false); |
18 | pref("privacy.resistFingerprinting.pbmode", false); | |
19 | pref("privacy.fingerprintingProtection", true); | |
20 | pref("privacy.fingerprintingProtection.pbmode", true); | |
888d9072 | 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. | |
c0eb0bfb | 25 | pref("privacy.fingerprintingProtection.overrides", "+AllTargets,-CSSPrefersColorScheme,-JSDateTimeUTC"); |
26 | ||
27 | // enable chrome | |
28 | pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); |