commit 50869a734f75e63b1fd2fd6d959c4ca3c1f5e689
parent bb788682c979d71f8e0ba82d5e71857d013e08f4
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date: Mon, 29 Apr 2019 18:13:47 +0000
[setup-*] always goes after [notes]
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/user.js b/user.js
@@ -1074,11 +1074,11 @@ user_pref("_user.js.parrot", "2300 syntax error: the parrot's off the twig!");
* Service workers essentially act as proxy servers that sit between web apps, and the browser
* and network, are event driven, and can control the web page/site it is associated with,
* intercepting and modifying navigation and resource requests, and caching resources.
+ * [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.
* [SETUP-WEB] Disabling service workers will break some sites. This pref is a master switch, and controls
* notifications (2304, 2305) and service worker cache (2740) - all three are inactive. Notifications are
- * behind a prompt (2306). If you enable service workers, then you may want to look at these prefs as well.
- * [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. ***/
+ * behind a prompt (2306). If you enable service workers, then you may want to look at those as well ***/
user_pref("dom.serviceWorkers.enabled", false);
/* 2304: disable Web Notifications
* [NOTE] Web Notifications require service workers (2302) and are behind a prompt (2306)