From 91e69b61ff6244c6e897427d3edef534df441c76 Mon Sep 17 00:00:00 2001 From: Hal <11689349+yokoffing@users.noreply.github.com> Date: Fri, 17 May 2024 16:56:48 -0400 Subject: [PATCH] Bounce Tracking Protection --- Securefox.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Securefox.js b/Securefox.js index 7925653..2f7aad1 100644 --- a/Securefox.js +++ b/Securefox.js @@ -132,7 +132,7 @@ user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *. // [3] https://searchfox.org/mozilla-central/source/browser/extensions/webcompat/data/shims.js //user_pref("extensions.webcompat.enable_shims", true); // enabled with "Strict" -// PREF: Redirect Tracking Prevention +// PREF: Redirect Tracking Prevention / Cookie Purging // All storage is cleared (more or less) daily from origins that are known trackers and that // haven’t received a top-level user interaction (including scroll) within the last 45 days. // [1] https://www.ghacks.net/2020/08/06/how-to-enable-redirect-tracking-in-firefox/ @@ -140,8 +140,17 @@ user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *. // [3] https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Privacy/Redirect_tracking_protection // [4] https://www.ghacks.net/2020/03/04/firefox-75-will-purge-site-data-if-associated-with-tracking-cookies/ // [5] https://github.com/arkenfox/user.js/issues/1089 +// [6] https://firefox-source-docs.mozilla.org/toolkit/components/antitracking/anti-tracking/cookie-purging/index.html //user_pref("privacy.purge_trackers.enabled", true); // DEFAULT +// PREF: Bounce Tracking Protection [FF127+ NIGHTLY] +// A new standardised variant of Cookie Purging that uses heuristics to detect bounce trackers, +// rather than relying on tracker lists. +// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1895222 +// [2] https://groups.google.com/a/mozilla.org/g/dev-platform/c/M6erM0SjPTM +//user_pref("privacy.bounceTrackingProtection.enabled", true); // DEFAULT +//user_pref("privacy.bounceTrackingProtection.enableDryRunMode", false); // DEFAULT + // PREF: SameSite Cookies // Currently, the absence of the SameSite attribute implies that cookies will be // attached to any request for a given origin, no matter who initiated that request.