-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sticky: override recipes #1080
Comments
OBSOLETE⭐ This is now inactive in arkenfox v128 see #1804 🔻 I don't want RFP RFP also includes timing mitigations
/* override recipe: RFP is not for me ***/
user_pref("privacy.resistFingerprinting", false); // 4501
user_pref("privacy.resistFingerprinting.letterboxing", false); // 4504 [pointless if not using RFP]
user_pref("webgl.disabled", false); // 4520 [mostly pointless if not using RFP] ⭐ This is now inactive in arkenfox v115.1+ see #1707 🔻 enable DRM: Netflix, HBO, Disney+, Amazon Prime, Showtime, Hulu, DirectTV, Starz, Sling ...
/* override recipe: enable DRM and let me watch videos ***/
// user_pref("media.gmp-widevinecdm.enabled", true); // 2021 default-inactive in user.js and removed in user.js 115.1
user_pref("media.eme.enabled", true); // 2022 ⭐ This is now the default in arkenfox v96, see #1281 Arkenfox will not support configurations in ETP custom mode moving forward 🔻 use ETP Strict mode
/* override recipe: FF87+ use ETP Strict mode ***/
user_pref("browser.contentblocking.category", "strict"); // 2701
user_pref("privacy.firstparty.isolate", false); // 6008: default false arkenfox v96
user_pref("network.cookie.cookieBehavior", 5); // 7016 inactive v96 [set at runtime by category=strict] ⭐ This is now the default in arkenfox v95, see #1286 🔻 RFP users: allow bigger default sizes for new windows (new win includes startup) By all means, if you want bigger, go for it. This is not Tor Browser and the web needs to be usable for you /* override-recipe: desktop: alter new window max sizes **/
// user_pref("privacy.window.maxInnerWidth", 1600); // 4502 [default 1600 in user.js v95]
// user_pref("privacy.window.maxInnerHeight", 900); // 4502 [default 900 in user.js v95] ⭐ This is now the default in arkenfox v95, see #1282 🔻 enable web conferencing (thanks @rusty-snake, @mlario, @crssi ) /* override recipe: enable web conferencing: Google Meet | JitsiMeet | BigBlueButton | Zoom | Discord ***/
// OPTIONAL
// some sites, e.g. Zoom, need a canvas site exception if using RFP [Right Click>View Page Info>Permissions]
// user_pref("media.autoplay.blocking_policy", 0); // 2031 optional [otherwise add site exceptions]
// user_pref("webgl.disabled", false); // 4520 optional [required for Zoom]
// RESET these - all now inactive or removed from user.js
// ^ except media.peerconnection.ice.no_host can be used to harden if it works for you
// user_pref("media.peerconnection.enabled", true); // 2001 default-inactive in user.js 95
// user_pref("media.peerconnection.ice.no_host", false); // 2004 default-inactive in user.js 95
// user_pref("javascript.options.wasm", true); // 5506 default-inactive in user.js v91
// user_pref("dom.webaudio.enabled", true); // 8001 default-inactive in user.js v90
// user_pref("media.getusermedia.screensharing.enabled", true); // removed from user.js v91 ⭐ This is now the default in arkenfox v94 see #1256 and tweaked in v95 see #1291 🔻 keep cookie + site data exceptions on close Add exceptions as
/* override recipe: keep some cookies + site data on exit ***/
// user_pref("network.cookie.lifetimePolicy", 2); // 2801 [default 2 in user.js 94+]
// user_pref("privacy.clearOnShutdown.cookies", false); // 2811 [default false in user.js 94+]
// user_pref("privacy.cpd.cookies", false); // 2812 Ctrl-Shift-Del [default false in user.js 94+]
// user_pref("privacy.clearOnShutdown.offlineApps", false); // 2811 [default false in user.js 95+]
// user_pref("privacy.cpd.offlineApps", false); // 2812 Ctrl-Shift-Del [default false in user.js 95+] |
CURRENT
🔻 enable session restore
to keep cookies for selected sites, add site exceptions as
Allow
, see this wiki entryThe text was updated successfully, but these errors were encountered: