forked from d3cim/mobile_user.js
Update 'user.js (less connections)'
This commit is contained in:
parent
12a6436bfd
commit
f259d9a2c5
|
@ -2194,6 +2194,25 @@ user_pref("browser.ping-centre.telemetry", false); // [DESKTOP]
|
|||
// -------------------------------------
|
||||
// Pref : Disable all the trackingprotection blocked elements by default
|
||||
user_pref("browser.contentblocking.features.strict", ""); // [DESKTOP]
|
||||
// -------------------------------------
|
||||
// Pref : Network Partitioning
|
||||
// Network Partitioning will allow Firefox to save resources like the cache, favicons, CSS files, images, and more
|
||||
// on a per-website basis rather than together in the same pool.
|
||||
// https://www.zdnet.com/article/firefox-to-ship-network-partitioning-as-a-new-anti-tracking-defense/
|
||||
// https://github.com/privacycg/storage-partitioning#introduction
|
||||
// https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Privacy/State_Partitioning
|
||||
// https://blog.mozilla.org/security/2021/01/26/supercookie-protections/
|
||||
user_pref("privacy.partition.network_state", true); // [DEFAULT: true]
|
||||
// -------------------------------------
|
||||
// Pref : Redirect Tracking Prevention
|
||||
// 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.
|
||||
// https://www.ghacks.net/2020/08/06/how-to-enable-redirect-tracking-in-firefox/
|
||||
// https://www.cookiestatus.com/firefox/#other-first-party-storage
|
||||
// https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Privacy/Redirect_tracking_protection
|
||||
// https://www.ghacks.net/2020/03/04/firefox-75-will-purge-site-data-if-associated-with-tracking-cookies/
|
||||
// https://github.com/arkenfox/user.js/issues/1089
|
||||
user_pref("privacy.purge_trackers.enabled", true); // [DEFAULT: false]
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// Section : System add-ons / Experiments
|
||||
|
|
Loading…
Reference in New Issue