diff --git a/user.js b/user.js
index 7e4b466..0e393c8 100644
--- a/user.js
+++ b/user.js
@@ -308,7 +308,7 @@ user_pref("network.proxy.socks_remote_dns", true);
 user_pref("network.file.disable_unc_paths", true); // [HIDDEN PREF]
 // -------------------------------------
 // Disable GIO as a potential proxy bypass vector
-user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF] [DEFAULT: "" FF118+]
+user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF] [DEFAULT: ""]
 // -------------------------------------
 // Disable proxy direct failover for system requests [FF91+]
 // user_pref("network.proxy.failover_direct", false);
@@ -470,7 +470,7 @@ user_pref("security.remote_settings.intermediates.enabled", false);
 user_pref("security.remote_settings.intermediates.bucket", "");
 user_pref("security.remote_settings.intermediates.collection", "");
 user_pref("security.remote_settings.intermediates.signer", "");
-user_pref("security.remote_settings.crlite_filters.enabled", false);
+user_pref("security.remote_settings.crlite_filters.enabled", false); // [DEFAULT: true FF137+]
 user_pref("security.remote_settings.crlite_filters.bucket", "");
 user_pref("security.remote_settings.crlite_filters.collection", "");
 user_pref("security.remote_settings.crlite_filters.signer", "");
@@ -653,28 +653,25 @@ user_pref("browser.contentblocking.category", "strict"); // [HIDDEN PREF]
 // Enable Firefox to clear items on shutdown
 user_pref("privacy.sanitize.sanitizeOnShutdown", true);
 //
-// SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS | v2 migration is FF128+
+// SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS
+//
+// Set/enforce clearOnShutdown items [FF128+]
+user_pref("privacy.clearOnShutdown_v2.cache", true); // [DEFAULT: true]
+user_pref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", true); // [DEFAULT: true]
+// user_pref("privacy.clearOnShutdown_v2.siteSettings", false); // [DEFAULT: false]
+//
+// Set/enforce clearOnShutdown items [FF136+]
+user_pref("privacy.clearOnShutdown_v2.browsingHistoryAndDownloads", true); // [DEFAULT: true]
+user_pref("privacy.clearOnShutdown_v2.downloads", true);
+user_pref("privacy.clearOnShutdown_v2.formdata", true);
 //
-// Set/enforce what items to clear on shutdown
-user_pref("privacy.clearOnShutdown.cache", true);
-user_pref("privacy.clearOnShutdown_v2.cache", true);  // [FF128+] [DEFAULT: true]
-user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true]
-user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true]
-user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true]
-user_pref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", true); // [FF128+] [DEFAULT: true]
-// user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false]
-// user_pref("privacy.clearOnShutdown_v2.siteSettings", false); // [FF128+] [DEFAULT: false]
-// -------------------------------------
 // Set Session Restore to clear on shutdown [FF34+]
 // user_pref("privacy.clearOnShutdown.openWindows", true);
 //
-// SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ | v2 migration is FF128+
+// SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS
 //
-// Set "Cookies" and "Site Data" to clear on shutdown
-user_pref("privacy.clearOnShutdown.cookies", true); // Cookies
-user_pref("privacy.clearOnShutdown.offlineApps", true); // Site Data
-user_pref("privacy.clearOnShutdown.sessions", true);  // Active Logins [DEFAULT: true]
-user_pref("privacy.clearOnShutdown_v2.cookiesAndStorage", true); // Cookies, Site Data, Active Logins [FF128+]
+// Set "Cookies" and "Site Data" to clear on shutdown [FF128+]
+user_pref("privacy.clearOnShutdown_v2.cookiesAndStorage", true);
 //
 // SANITIZE SITE DATA: IGNORES "ALLOW" SITE EXCEPTIONS
 //
@@ -684,24 +681,21 @@ user_pref("privacy.clearSiteData.cookiesAndStorage", false); // keep false until
 user_pref("privacy.clearSiteData.historyFormDataAndDownloads", true);
 // user_pref("privacy.clearSiteData.siteSettings", false);
 //
-// SANITIZE HISTORY: IGNORES "ALLOW" SITE EXCEPTIONS | clearHistory migration is FF128+
+// Set manual "Clear Data" items [FF136+]
+user_pref("privacy.clearSiteData.browsingHistoryAndDownloads", true);
+user_pref("privacy.clearSiteData.formdata", true);
+//
+// SANITIZE HISTORY: IGNORES "ALLOW" SITE EXCEPTIONS
 //
 // Set manual "Clear History" items, also via Ctrl-Shift-Del
-user_pref("privacy.cpd.cache", true); // [DEFAULT: true]
-user_pref("privacy.clearHistory.cache", true);
-user_pref("privacy.cpd.formdata", true); // Form & Search History
-user_pref("privacy.cpd.history", true); // Browsing & Download History
-// user_pref("privacy.cpd.downloads", true); // not used, see note above
-user_pref("privacy.clearHistory.historyFormDataAndDownloads", true);
-user_pref("privacy.cpd.cookies", false);
-user_pref("privacy.cpd.sessions", true); // [DEFAULT: true]
-user_pref("privacy.cpd.offlineApps", true); // [DEFAULT: false]
+user_pref("privacy.clearHistory.cache", true); // [DEFAULT: true]
 user_pref("privacy.clearHistory.cookiesAndStorage", false);
-// user_pref("privacy.cpd.openWindows", false); // Session Restore
-// user_pref("privacy.cpd.passwords", false);
-// user_pref("privacy.cpd.siteSettings", false);
-// user_pref("privacy.clearHistory.siteSettings", false);
-// -------------------------------------
+user_pref("privacy.clearHistory.historyFormDataAndDownloads", true); // [DEFAULT: true]
+// user_pref("privacy.clearHistory.siteSettings", false); // [DEFAULT: false]
+//
+// Set manual "Clear History" items [FF136+]
+user_pref("privacy.clearHistory.browsingHistoryAndDownloads", true); // [DEFAULT: true]
+user_pref("privacy.clearHistory.formdata", true);
 //
 // SANITIZE MANUAL: TIMERANGE
 //
@@ -713,7 +707,7 @@ user_pref("privacy.sanitize.timeSpan", 0);
 // FPP (fingerprintingProtection)
 // >>>>>>>>>>>>>>>>>>>>>
 // Enable FPP in PB mode [FF114+]
-user_pref("privacy.fingerprintingProtection.pbmode", true); // [DEFAULT: true FF118+]
+user_pref("privacy.fingerprintingProtection.pbmode", true); // [DEFAULT: true]
 // -------------------------------------
 // Set global FPP overrides [FF114+]
 // user_pref("privacy.fingerprintingProtection.overrides", "");
@@ -878,6 +872,9 @@ user_pref("javascript.options.baselinejit", false);
 user_pref("javascript.options.wasm_baselinejit", false);
 user_pref("javascript.options.jit_trustedprincipals", true); // [FF75+] [HIDDEN PREF]
 // -------------------------------------
+// Do not disable spectre mitigations for isolated content
+user_pref("javascript.options.spectre.disable_for_isolated_content", false);
+// -------------------------------------
 // Disable WebAssembly [FF52+]
 user_pref("javascript.options.wasm", false);
 // -------------------------------------
@@ -912,9 +909,12 @@ user_pref("network.cookie.sameSite.noneRequiresSecure", true);
 user_pref("network.cookie.sameSite.schemeful", true);
 // -------------------------------------
 // Block Cookie Banners
+user_pref("cookiebanners.bannerClicking.enabled", true);
+user_pref("cookiebanners.cookieInjector.enabled", true);
 user_pref("cookiebanners.service.mode", 1);
 user_pref("cookiebanners.service.mode.privateBrowsing", 1);
 user_pref("cookiebanners.service.enableGlobalRules", true);
+user_pref("cookiebanners.service.enableGlobalRules.subFrames", true);
 user_pref("cookiebanners.ui.desktop.enabled", true);
 //
 // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
@@ -954,13 +954,20 @@ user_pref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false]
 // Disable quarantined domains [FF115+]
 user_pref("extensions.quarantinedDomains.enabled", false); // [DEFAULT: true]
 // -------------------------------------
-// prefsCleaner: previously active items removed from arkenfox 115-127
-// user_pref("accessibility.force_disabled", "");
-// user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", "");
-// user_pref("network.protocol-handler.external.ms-windows-store", "");
-// user_pref("privacy.partition.always_partition_third_party_non_cookie_storage", "");
-// user_pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", "");
-// user_pref("privacy.partition.serviceWorkers", "");
+// prefsCleaner: reset previously active items removed from arkenfox FF128+
+// user_pref("privacy.clearOnShutdown.cache", "");
+// user_pref("privacy.clearOnShutdown.cookies", "");
+// user_pref("privacy.clearOnShutdown.downloads", "");
+// user_pref("privacy.clearOnShutdown.formdata", "");
+// user_pref("privacy.clearOnShutdown.history", "");
+// user_pref("privacy.clearOnShutdown.offlineApps", "");
+// user_pref("privacy.clearOnShutdown.sessions", "");
+// user_pref("privacy.cpd.cache", "");
+// user_pref("privacy.cpd.cookies", "");
+// user_pref("privacy.cpd.formdata", "");
+// user_pref("privacy.cpd.history", "");
+// user_pref("privacy.cpd.offlineApps", "");
+// user_pref("privacy.cpd.sessions", "");
 //
 // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 // DON'T BOTHER
@@ -1043,7 +1050,7 @@ user_pref("network.http.referer.disallowCrossSiteRelaxingDefault", true);
 user_pref("network.http.referer.disallowCrossSiteRelaxingDefault.top_navigation", true); // [FF100+]
 user_pref("privacy.bounceTrackingProtection.mode", 1); // [FF131+] [ETP FF133+]
 user_pref("privacy.fingerprintingProtection", true); // [FF114+] [ETP FF119+]
-user_pref("privacy.partition.network_state.ocsp_cache", true); // [DEFAULT: true FF123+]
+user_pref("privacy.partition.network_state.ocsp_cache", true); // [DEFAULT: true]
 user_pref("privacy.query_stripping.enabled", true); // [FF101+]
 user_pref("privacy.query_stripping.strip_list", "__hsfp __hssc __hstc __s _hsenc _openstat dclid fbclid gbraid gclid hsCtaTracking igshid mc_eid ml_subscriber ml_subscriber_hash msclkid oft_c oft_ck oft_d oft_id oft_ids oft_k oft_lk oft_sk oly_anon_id oly_enc_id rb_clickid s_cid twclid vero_conv vero_id wbraid wickedid yclid");
 user_pref("privacy.trackingprotection.enabled", true);
@@ -1051,10 +1058,6 @@ user_pref("privacy.trackingprotection.socialtracking.enabled", true);
 user_pref("privacy.trackingprotection.cryptomining.enabled", true); // [DEFAULT: true]
 user_pref("privacy.trackingprotection.fingerprinting.enabled", true); // [DEFAULT: true]
 // -------------------------------------
-// Allow embedded tweets and Reddit posts. Don't do it!
-// user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com"); // [HIDDEN PREF]
-// user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com"); // [HIDDEN PREF]
-// -------------------------------------
 // Disable service workers
 // user_pref("dom.serviceWorkers.enabled", false);
 // -------------------------------------
@@ -1205,56 +1208,7 @@ user_pref("media.realtime_decoder.enabled", false);
 // DEPRECATED / RENAMED
 // >>>>>>>>>>>>>>>>>>>>>
 //
-// ESR115.x still uses all the following prefs
-//
-// FF116
-//
-// Set RFP's font visibility level [FF94+]
-// user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1]
-//
-// FF117
-//
-// Disable Windows Microsoft Family Safety cert [FF50+] [WINDOWS]
-user_pref("security.family_safety.mode", 0);
-// -------------------------------------
-// Disable service worker Web Notifications [FF44+]
-// user_pref("dom.webnotifications.serviceworker.enabled", false);
-//
-// FF118
-//
-// Limit font visibility (Windows, Mac, some Linux) [FF94+]
-// user_pref("layout.css.font-visibility.private", 1);
-// user_pref("layout.css.font-visibility.standard", 1);
-// user_pref("layout.css.font-visibility.trackingprotection", 1);
-// -------------------------------------
-// Disable permissions delegation [FF73+]
-// user_pref("permissions.delegation.enabled", false);
-//
-// FF119
-//
-// Use en-US locale regardless of the system or region locale
-// user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF]
-// -------------------------------------
-// Disable skipping DoH when parental controls are enabled [FF70+]
-user_pref("network.dns.skipTRR-when-parental-control-enabled", false);
-//
-// FF123
-//
-// Disable PingCentre telemetry (used in several System Add-ons) [FF57+]
-user_pref("browser.ping-centre.telemetry", false);
-//
-// FF126
-//
-// Disable What's New toolbar icon [FF69+]
-user_pref("browser.messaging-system.whatsNewPanel.enabled", false);
-//
-// FF127
-//
-// Disable content analysis by DLP (Data Loss Prevention) agents - replaced by default_result
-user_pref("browser.contentanalysis.default_allow", false);
-// -------------------------------------
-// Enforce non-native widget theme
-user_pref("widget.non-native-theme.enabled", true); // [DEFAULT: true]
+// ESR128.x still uses all the following prefs
 //
 // FF132
 //