Created
October 2, 2017 08:41
-
-
Save anonymous/3def3aaa7cb987c7cf4072b5dbc37771 to your computer and use it in GitHub Desktop.
Example of a Firefox user.js with ResistFingerprinting and FirstPartyIsolation enabled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Isolate everytab with containers (might break some sites) | |
user_pref("privacy.firstparty.isolate", true); | |
// If you can't login to some sites uncomment this | |
//user_pref("privacy.firstparty.isolate.restrict_opener_access", true); | |
// Enable the resistance to fingenprinting | |
user_pref("privacy.resistFingerprinting", true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment