commit 7b667db7669155952323bf0aad2894cd09b32728
parent 8f1a489e361f97995e0cb69b1e0303c0f425d2f2
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date: Sun, 28 Apr 2019 03:37:07 +0000
2304 + 2305 -> inactive, see #706
Diffstat:
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/user.js b/user.js
@@ -1152,17 +1152,19 @@ user_pref("_user.js.parrot", "2300 syntax error: the parrot's off the twig!");
* [NOTE] Service workers only run over HTTPS. Service Workers have no DOM access. ***/
user_pref("dom.serviceWorkers.enabled", false);
/* 2304: disable Web Notifications
+ * [NOTE] Web Notifications require Service Workers, and are behind a prompt (see 2306)
* [1] https://developer.mozilla.org/docs/Web/API/Notifications_API ***/
-user_pref("dom.webnotifications.enabled", false); // [FF22+]
-user_pref("dom.webnotifications.serviceworker.enabled", false); // [FF44+]
+ // user_pref("dom.webnotifications.enabled", false); // [FF22+]
+ // user_pref("dom.webnotifications.serviceworker.enabled", false); // [FF44+]
/* 2305: disable Push Notifications [FF44+]
* web apps can receive messages pushed to them from a server, whether or
* not the web app is in the foreground, or even currently loaded
+ * [NOTE] Push Notifications require Service Workers, and are behind a prompt (see 2306)
* [1] https://developer.mozilla.org/docs/Web/API/Push_API ***/
-user_pref("dom.push.enabled", false);
-user_pref("dom.push.connection.enabled", false);
-user_pref("dom.push.serverURL", "");
-user_pref("dom.push.userAgentID", "");
+ // user_pref("dom.push.enabled", false);
+ // user_pref("dom.push.connection.enabled", false);
+ // user_pref("dom.push.serverURL", "");
+ // user_pref("dom.push.userAgentID", "");
/* 2306: set a default permission for Notifications (both 2305 and 2306) [FF58+]
* 0=always ask (default), 1=allow, 2=block
* [NOTE] Best left at default "always ask", fingerprintable via Permissions API