mirror of
https://github.com/arkenfox/user.js.git
synced 2025-04-30 22:13:40 +02:00
add FPP granularOverrides #1857
This commit is contained in:
parent
1000651139
commit
dde33d640a
1 changed files with 8 additions and 3 deletions
11
user.js
11
user.js
|
@ -736,11 +736,16 @@ user_pref("_user.js.parrot", "4000 syntax error: the parrot's bereft of life!");
|
||||||
* [NOTE] In FF119+, FPP for all modes (7016) is enabled with ETP Strict (2701) ***/
|
* [NOTE] In FF119+, FPP for all modes (7016) is enabled with ETP Strict (2701) ***/
|
||||||
// user_pref("privacy.fingerprintingProtection.pbmode", true); // [DEFAULT: true FF118+]
|
// user_pref("privacy.fingerprintingProtection.pbmode", true); // [DEFAULT: true FF118+]
|
||||||
/* 4002: set global FPP overrides [FF114+]
|
/* 4002: set global FPP overrides [FF114+]
|
||||||
* Controls what protections FPP uses globally, including "RFPTargets" (despite the name these are
|
* uses "RFPTargets" [1] which despite the name these are not used by RFP
|
||||||
* not used by RFP) e.g. "+AllTargets,-CSSPrefersColorScheme" or "-AllTargets,+CanvasRandomization"
|
* e.g. "+AllTargets,-CSSPrefersColorScheme,-JSDateTimeUTC" = all targets but allow prefers-color-scheme and do not change timezone
|
||||||
* [WARNING] Not recommended. Either use RFP or FPP at defaults
|
* e.g. "-AllTargets,+CanvasRandomization,+JSDateTimeUTC" = no targets but do use FPP canvas and change timezone
|
||||||
|
* [NOTE] Not supported by arkenfox. Either use RFP or FPP at defaults
|
||||||
* [1] https://searchfox.org/mozilla-central/source/toolkit/components/resistfingerprinting/RFPTargets.inc ***/
|
* [1] https://searchfox.org/mozilla-central/source/toolkit/components/resistfingerprinting/RFPTargets.inc ***/
|
||||||
// user_pref("privacy.fingerprintingProtection.overrides", "");
|
// user_pref("privacy.fingerprintingProtection.overrides", "");
|
||||||
|
/* 4003: set granular FPP overrides
|
||||||
|
* JSON format: e.g."[{\"firstPartyDomain\": \"netflix.com\", \"overrides\": \"-CanvasRandomization,-FrameRate,\"}]"
|
||||||
|
* [NOTE] Not supported by arkenfox. Either use RFP or FPP at defaults ***/
|
||||||
|
// user_pref("privacy.fingerprintingProtection.granularOverrides", "");
|
||||||
/* 4004: disable remote FPP overrides [FF127+] ***/
|
/* 4004: disable remote FPP overrides [FF127+] ***/
|
||||||
// user_pref("privacy.fingerprintingProtection.remoteOverrides.enabled", false);
|
// user_pref("privacy.fingerprintingProtection.remoteOverrides.enabled", false);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue