-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
|
||
/* PRIVACY FIGHTHER 'user.js' FOR 'alternative' PROFILE | ||
This setup only clears all types of persistent storage (cookies, caches, offline data) on shutdown. | ||
To be used with the 'alternative' profile. Much better option than needing Chrome for rare occations when | ||
a website breaks in the main profile. | ||
***/ | ||
|
||
|
||
user_pref("privacyfighter.config.version", 67.0.0); // corresponds to firefox version, run PF again to fetch latest configuration sets | ||
|
||
|
||
// enforce caches, cookies, ofline data to clear on shutdown | ||
user_pref("privacy.sanitize.sanitizeOnShutdown", true); | ||
|
||
user_pref("privacy.clearOnShutdown.cache", true); | ||
user_pref("privacy.clearOnShutdown.cookies", true); | ||
user_pref("privacy.clearOnShutdown.offlineApps", true); // Offline Website Data | ||
user_pref("privacy.clearOnShutdown.sessions", true); // Active Logins | ||
|
||
user_pref("privacy.clearOnShutdown.siteSettings", false); // Site Preferences | ||
user_pref("privacy.clearOnShutdown.history", false); // Browsing & Download History | ||
user_pref("privacy.clearOnShutdown.formdata", false); // Form & Search History | ||
user_pref("privacy.clearOnShutdown.downloads", false); | ||
user_pref("privacy.clearOnShutdown.openWindows", false); |