Skip to content

Commit e7fa19f

Browse files
add v2 sanitizing prefs #1837
1 parent fdd79a4 commit e7fa19f

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

user.js

+11-7
Original file line numberDiff line numberDiff line change
@@ -641,33 +641,37 @@ user_pref("_user.js.parrot", "2800 syntax error: the parrot's bleedin' demised!"
641641
* [SETTING] Privacy & Security>History>Custom Settings>Clear history when Firefox closes | Settings ***/
642642
user_pref("privacy.sanitize.sanitizeOnShutdown", true);
643643

644-
/** SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS ***/
644+
/** SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS | v2 migration is FF128+ ***/
645645
/* 2811: set/enforce what items to clear on shutdown (if 2810 is true) [SETUP-CHROME]
646-
* [NOTE] If "history" is true, downloads will also be cleared
647-
* [NOTE] "sessions": Active Logins: refers to HTTP Basic Authentication [1], not logins via cookies
648-
* [1] https://en.wikipedia.org/wiki/Basic_access_authentication ***/
646+
* [NOTE] If "history" is true, downloads will also be cleared ***/
649647
user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true]
648+
user_pref("privacy.clearOnShutdown_v2.cache", true); // [FF128+] [DEFAULT: true]
650649
user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true]
651650
user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true]
652651
user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true]
653-
user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true]
652+
user_pref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", true); // [FF128+] [DEFAULT: true]
654653
// user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false]
654+
// user_pref("privacy.clearOnShutdown_v2.siteSettings", false); // [FF128+] [DEFAULT: false]
655655
/* 2812: set Session Restore to clear on shutdown (if 2810 is true) [FF34+]
656656
* [NOTE] Not needed if Session Restore is not used (0102) or it is already cleared with history (2811)
657657
* [NOTE] If true, this prevents resuming from crashes (also see 5008) ***/
658658
// user_pref("privacy.clearOnShutdown.openWindows", true);
659659

660-
/** SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ ***/
660+
/** SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ | v2 migration is FF128+ ***/
661661
/* 2815: set "Cookies" and "Site Data" to clear on shutdown (if 2810 is true) [SETUP-CHROME]
662662
* [NOTE] Exceptions: A "cookie" block permission also controls "offlineApps" (see note below).
663663
* serviceWorkers require an "Allow" permission. For cross-domain logins, add exceptions for
664664
* both sites e.g. https://www.youtube.com (site) + https://accounts.google.com (single sign on)
665665
* [NOTE] "offlineApps": Offline Website Data: localStorage, service worker cache, QuotaManager (IndexedDB, asm-cache)
666+
* [NOTE] "sessions": Active Logins (has no site exceptions): refers to HTTP Basic Authentication [1], not logins via cookies
666667
* [WARNING] Be selective with what sites you "Allow", as they also disable partitioning (1767271)
667668
* [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow (when on the website in question)
668-
* [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/
669+
* [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings
670+
* [1] https://en.wikipedia.org/wiki/Basic_access_authentication ***/
669671
user_pref("privacy.clearOnShutdown.cookies", true); // Cookies
670672
user_pref("privacy.clearOnShutdown.offlineApps", true); // Site Data
673+
user_pref("privacy.clearOnShutdown.sessions", true); // Active Logins [DEFAULT: true]
674+
user_pref("privacy.clearOnShutdown_v2.cookiesAndStorage", true) // Cookies, Site Data, Active Logins [FF128+]
671675

672676
/** SANITIZE MANUAL: IGNORES "ALLOW" SITE EXCEPTIONS ***/
673677
/* 2820: reset default items to clear with Ctrl-Shift-Del [SETUP-CHROME]

0 commit comments

Comments
 (0)