mirror of
https://github.com/arkenfox/user.js.git
synced 2025-05-02 15:03:39 +02:00
put back 2703 draft 1
also fixup case on first letter after [NOTE]
This commit is contained in:
parent
68b0e97a3f
commit
9806bd685b
1 changed files with 7 additions and 3 deletions
10
user.js
10
user.js
|
@ -139,7 +139,7 @@ user_pref("_user.js.parrot", "0200 syntax error: the parrot's definitely decease
|
|||
// user_pref("geo.enabled", false);
|
||||
/* 0201b: set a default permission for Location [FF58+]
|
||||
* 0=always ask (default), 1=allow, 2=block
|
||||
* [NOTE] best left at default "always ask", fingerprintable via Permissions API
|
||||
* [NOTE] Best left at default "always ask", fingerprintable via Permissions API
|
||||
* [SETTING] to add site exceptions: Page Info>Permissions>Access Your Location
|
||||
* [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Location>Settings ***/
|
||||
// user_pref("permissions.default.geo", 2);
|
||||
|
@ -1154,7 +1154,7 @@ user_pref("dom.webnotifications.enabled", false); // [FF22+]
|
|||
user_pref("dom.webnotifications.serviceworker.enabled", false); // [FF44+]
|
||||
/* 2305: set a default permission for Notifications (see 2304) [FF58+]
|
||||
* 0=always ask (default), 1=allow, 2=block
|
||||
* [NOTE] best left at default "always ask", fingerprintable via Permissions API
|
||||
* [NOTE] Best left at default "always ask", fingerprintable via Permissions API
|
||||
* [SETTING] to add site exceptions: Page Info>Permissions>Receive Notifications
|
||||
* [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Notifications>Settings ***/
|
||||
// user_pref("permissions.default.desktop-notification", 2);
|
||||
|
@ -1313,7 +1313,7 @@ user_pref("permissions.manager.defaultsUrl", "");
|
|||
/* 2617: remove webchannel whitelist ***/
|
||||
user_pref("webchannel.allowObject.urlWhitelist", "");
|
||||
/* 2618: disable exposure of system colors to CSS or canvas [FF44+]
|
||||
* [NOTE] see second listed bug: may cause black on black for elements with undefined colors
|
||||
* [NOTE] See second listed bug: may cause black on black for elements with undefined colors
|
||||
* [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=232227,1330876 ***/
|
||||
user_pref("ui.use_standins_for_native_colors", true); // [HIDDEN PREF]
|
||||
/* 2619: enforce Punycode for Internationalized Domain Names to eliminate possible spoofing
|
||||
|
@ -1415,6 +1415,10 @@ user_pref("network.cookie.cookieBehavior", 1);
|
|||
* [2] http://kb.mozillazine.org/Network.cookie.thirdparty.sessionOnly ***/
|
||||
user_pref("network.cookie.thirdparty.sessionOnly", true);
|
||||
user_pref("network.cookie.thirdparty.nonsecureSessionOnly", true); // [FF58+]
|
||||
/* 2703: delete cookies and site data on close
|
||||
* [NOTE] The setting below is disabled you block all cookies (2701 = 2)
|
||||
* [SETTING] Privacy>Cookies and Site Data>Delete cookies and site data when Firefox is closed ***/
|
||||
// user_pref("network.cookie.lifetimePolicy", 0); // 0=delete, 2=keep
|
||||
/* 2705: disable HTTP sites setting cookies with the "secure" directive [FF52+]
|
||||
* [1] https://developer.mozilla.org/Firefox/Releases/52#HTTP ***/
|
||||
user_pref("network.cookie.leave-secure-alone", true); // [DEFAULT: true]
|
||||
|
|
Loading…
Add table
Reference in a new issue