Skip to content

Commit

Permalink
2303->2700s serviceWorker cache #235
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorin-Oakenpants committed Nov 29, 2017
1 parent 44e129e commit 22695f4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -1112,8 +1112,6 @@ user_pref("dom.workers.enabled", false);
* [NOTE] Service worker APIs are hidden (in Firefox) and cannot be used when in PB mode.
* [NOTE] Service workers only run over HTTPS. Service Workers have no DOM access. ***/
user_pref("dom.serviceWorkers.enabled", false);
/* 2303: disable service workers' cache and cache storage ***/
user_pref("dom.caches.enabled", false);
/* 2304: disable web notifications
* [NOTE] You can still override individual domains under site permissions (FF44+)
* [1] https://developer.mozilla.org/docs/Web/API/Notifications_API ***/
Expand Down Expand Up @@ -1394,7 +1392,7 @@ user_pref("security.data_uri.block_toplevel_data_uri_navigations", true);
localStorage : profile\webappsstore.sqlite
indexedDB : profile\storage\default
appCache : profile\OfflineCache
serviceWorkers : see 2303
serviceWorkers :
***/
user_pref("_user.js.parrot", "2700 syntax error: the parrot's joined the bleedin' choir invisible!");
/* 2701: disable cookies on all sites [SETUP]
Expand Down Expand Up @@ -1444,6 +1442,9 @@ user_pref("network.cookie.leave-secure-alone", true);
* [1] https://github.com/gorhill/uBlock/releases/tag/1.14.0
* [WARNING] This *will* break other extensions including legacy, and *will* break some sites ***/
// user_pref("dom.indexedDB.enabled", false);
/* 2715: disable service workers cache and cache storage
* [1] https://w3c.github.io/ServiceWorker/#privacy ***/
user_pref("dom.caches.enabled", false);
/* 2720: disable offline cache ***/
user_pref("browser.cache.offline.enable", false);
/* 2721: enforce websites to ask to store data for offline use
Expand Down

0 comments on commit 22695f4

Please sign in to comment.