Restored service workers and push notifs. in cfg through isolation

This commit is contained in:
Melody 2021-12-30 22:42:44 +01:00 committed by fabrizio
parent 16a7f54f95
commit b219a75b4a

View file

@ -27,6 +27,7 @@ pref("browser.contentblocking.category", "strict");
defaultPref("network.cookie.cookieBehavior", 5); // dFPI is default for strict mode, but enforce
defaultPref("network.cookie.lifetimePolicy", 2); // keep cookies until end of the session, then clear
defaultPref("privacy.partition.serviceWorkers", true); // isolate service workers
// make third party and http cookies session-only
defaultPref("network.cookie.thirdparty.sessionOnly", true);
@ -106,11 +107,6 @@ defaultPref("dom.disable_window_move_resize", true); // block scripts from resiz
defaultPref("browser.link.open_newwindow", 3); // open 'new windows' targeted links in 'new tab'
defaultPref("browser.link.open_newwindow.restriction", 0); // ignore the size when applying the above pref
// push notifications and service workeers
defaultPref("dom.push.enabled", false); // disable push notifications
defaultPref("dom.push.serverURL", ""); // default "wss://push.services.mozilla.com/"
defaultPref("dom.serviceWorkers.enabled", false); // disable service workers, must enable for push notifications
// --------------------------------
// # CACHE AND TEMPORARY FILES
// --------------------------------