Skip to content

Commit

Permalink
renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
jotyGill committed Jun 6, 2019
1 parent 22d2e5e commit 7d533c5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions privacyfighter/profile/alternative-user.js
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);

0 comments on commit 7d533c5

Please sign in to comment.