mirror of
https://github.com/arkenfox/user.js.git
synced 2025-02-22 10:23:56 +00:00
v117 (#1710)
This commit is contained in:
parent
dfd5589c3d
commit
1e6e211a06
65
user.js
65
user.js
@ -1,7 +1,7 @@
|
||||
/******
|
||||
* name: arkenfox user.js
|
||||
* date: 27 August 2023
|
||||
* version: 115
|
||||
* date: 17 September 2023
|
||||
* version: 117
|
||||
* url: https://github.com/arkenfox/user.js
|
||||
* license: MIT: https://github.com/arkenfox/user.js/blob/master/LICENSE.txt
|
||||
|
||||
@ -33,6 +33,8 @@
|
||||
- If you are not using arkenfox v102-1... (not a definitive list)
|
||||
- 2815: clearOnShutdown cookies + offlineApps should be false
|
||||
- 9999: switch the appropriate deprecated section(s) back on
|
||||
* ESR115
|
||||
- use https://github.com/arkenfox/user.js/releases/tag/115.1
|
||||
|
||||
* INDEX:
|
||||
|
||||
@ -283,15 +285,23 @@ user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF]
|
||||
* [SETUP-CHROME] If you use a proxy and you understand the security impact
|
||||
* [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1732792,1733994,1733481 ***/
|
||||
// user_pref("network.proxy.allow_bypass", false);
|
||||
/* 0710: disable DNS-over-HTTPS (DoH) rollout [FF60+]
|
||||
* 0=default, 2=increased (TRR (Trusted Recursive Resolver) first), 3=max (TRR only), 5=off
|
||||
/* 0710: enable DNS-over-HTTPS (DoH) [FF60+]
|
||||
* 0=default, 2=increased (TRR (Trusted Recursive Resolver) first), 3=max (TRR only), 5=off (no rollout)
|
||||
* see "doh-rollout.home-region": USA 2019, Canada 2021, Russia/Ukraine 2022 [3]
|
||||
* [SETTING] Privacy & Security>DNS over HTTPS
|
||||
* [1] https://hacks.mozilla.org/2018/05/a-cartoon-intro-to-dns-over-https/
|
||||
* [2] https://wiki.mozilla.org/Security/DOH-resolver-policy
|
||||
* [3] https://support.mozilla.org/en-US/kb/firefox-dns-over-https
|
||||
* [4] https://www.eff.org/deeplinks/2020/12/dns-doh-and-odoh-oh-my-year-review-2020 ***/
|
||||
// user_pref("network.trr.mode", 5);
|
||||
// user_pref("network.trr.mode", 3);
|
||||
/* 0711: disable skipping DoH when parental controls are enabled [FF70+] ***/
|
||||
user_pref("network.dns.skipTRR-when-parental-control-enabled", false);
|
||||
/* 0712: set DoH provider
|
||||
* The custom uri is the value shown when you "Choose provider>Custom>"
|
||||
* [NOTE] If you USE custom then "network.trr.uri" should be set the same
|
||||
* [SETTING] Privacy & Security>DNS over HTTPS>Increased/Max>Choose provider ***/
|
||||
// user_pref("network.trr.uri", "https://example.dns");
|
||||
// user_pref("network.trr.custom_uri", "https://example.dns");
|
||||
|
||||
/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/
|
||||
user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!");
|
||||
@ -443,12 +453,6 @@ user_pref("security.OCSP.enabled", 1); // [DEFAULT: 1]
|
||||
user_pref("security.OCSP.require", true);
|
||||
|
||||
/** CERTS / HPKP (HTTP Public Key Pinning) ***/
|
||||
/* 1221: disable Windows 8.1's Microsoft Family Safety cert [FF50+] [WINDOWS]
|
||||
* 0=disable detecting Family Safety mode and importing the root
|
||||
* 1=only attempt to detect Family Safety mode (don't import the root)
|
||||
* 2=detect Family Safety mode and import the root
|
||||
* [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/21686 ***/
|
||||
user_pref("security.family_safety.mode", 0);
|
||||
/* 1223: enable strict PKP (Public Key Pinning)
|
||||
* 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict
|
||||
* [SETUP-WEB] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE ***/
|
||||
@ -499,7 +503,7 @@ user_pref("browser.xul.error_pages.expert_bad_cert", true);
|
||||
user_pref("_user.js.parrot", "1400 syntax error: the parrot's bereft of life!");
|
||||
/* 1402: limit font visibility (Windows, Mac, some Linux) [FF94+]
|
||||
* Uses hardcoded lists with two parts: kBaseFonts + kLangPackFonts [1], bundled fonts are auto-allowed
|
||||
* In normal windows: uses the first applicable: RFP (4506) over TP over Standard
|
||||
* In normal windows: uses the first applicable: RFP over TP over Standard
|
||||
* In Private Browsing windows: uses the most restrictive between normal and private
|
||||
* 1=only base system fonts, 2=also fonts from optional language packs, 3=also user-installed fonts
|
||||
* [1] https://searchfox.org/mozilla-central/search?path=StandardFonts*.inc ***/
|
||||
@ -769,7 +773,7 @@ user_pref("privacy.sanitize.timeSpan", 0);
|
||||
***/
|
||||
user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs");
|
||||
/* 4501: enable privacy.resistFingerprinting
|
||||
* [SETUP-WEB] RFP can cause some website breakage: mainly canvas, use a site exception via the urlbar
|
||||
* [SETUP-WEB] RFP can cause some website breakage: mainly canvas, use a canvas site exception via the urlbar
|
||||
* RFP also has a few side effects: mainly timezone is UTC0, and websites will prefer light theme
|
||||
* [NOTE] pbmode applies if true and the original pref is false
|
||||
* [1] https://bugzilla.mozilla.org/418986 ***/
|
||||
@ -799,8 +803,6 @@ user_pref("privacy.resistFingerprinting.letterboxing", true); // [HIDDEN PREF]
|
||||
* [WARNING] DO NOT USE unless testing, see [1] comment 12
|
||||
* [1] https://bugzilla.mozilla.org/1635603 ***/
|
||||
// user_pref("privacy.resistFingerprinting.exemptedDomains", "*.example.invalid");
|
||||
/* 4506: set RFP's font visibility level (1402) [FF94+] ***/
|
||||
// user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1]
|
||||
/* 4510: disable using system colors
|
||||
* [SETTING] General>Language and Appearance>Fonts and Colors>Colors>Use system colors ***/
|
||||
user_pref("browser.display.use_system_colors", false); // [DEFAULT: false NON-WINDOWS]
|
||||
@ -967,7 +969,7 @@ user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!");
|
||||
/* 5509: disable IPv6 if using a VPN
|
||||
* This is an application level fallback. Disabling IPv6 is best done at an OS/network
|
||||
* level, and/or configured properly in system wide VPN setups.
|
||||
* If you see PR_CONNECT_RESET_ERROR, this pref *might* be the cause
|
||||
* [SETUP-WEB] PR_CONNECT_RESET_ERROR
|
||||
* [NOTE] PHP defaults to IPv6 with "localhost". Use "php -S 127.0.0.1:PORT"
|
||||
* [TEST] https://ipleak.org/
|
||||
* [1] https://www.internetsociety.org/tag/ipv6-security/ (Myths 2,4,5,6) ***/
|
||||
@ -976,6 +978,11 @@ user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!");
|
||||
* 0=always (default), 1=only if base domains match, 2=only if hosts match
|
||||
* [NOTE] Will cause breakage: older modems/routers and some sites e.g banks, vimeo, icloud, instagram ***/
|
||||
// user_pref("network.http.referer.XOriginPolicy", 2);
|
||||
/* 5511: set DoH bootstrap address [FF89+]
|
||||
* Firefox uses the system DNS to initially resolve the IP address of your DoH server.
|
||||
* When set to a valid, working value that matches your "network.trr.uri" (0712) Firefox
|
||||
* won't use the system DNS. If the IP doesn't match then DoH won't work ***/
|
||||
// user_pref("network.trr.bootstrapAddr", "10.0.0.1") // [HIDDEN PREF]
|
||||
|
||||
/*** [SECTION 6000]: DON'T TOUCH ***/
|
||||
user_pref("_user.js.parrot", "6000 syntax error: the parrot's 'istory!");
|
||||
@ -1116,11 +1123,10 @@ user_pref("_user.js.parrot", "7000 syntax error: the parrot's pushing up daisies
|
||||
/* 7017: disable service workers
|
||||
* [WHY] Already isolated with TCP (2701) behind a pref (2710) ***/
|
||||
// user_pref("dom.serviceWorkers.enabled", false);
|
||||
/* 7018: disable Web Notifications
|
||||
/* 7018: disable Web Notifications [FF22+]
|
||||
* [WHY] Web Notifications are behind a prompt (7002)
|
||||
* [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ ***/
|
||||
// user_pref("dom.webnotifications.enabled", false); // [FF22+]
|
||||
// user_pref("dom.webnotifications.serviceworker.enabled", false); // [FF44+]
|
||||
// user_pref("dom.webnotifications.enabled", false);
|
||||
/* 7019: disable Push Notifications [FF44+]
|
||||
* [WHY] Push requires subscription
|
||||
* [NOTE] To remove all subscriptions, reset "dom.push.userAgentID"
|
||||
@ -1212,5 +1218,26 @@ user_pref("network.cookie.lifetimePolicy", 2);
|
||||
// user_pref("browser.cache.offline.enable", false);
|
||||
// ***/
|
||||
|
||||
/* ESR115.x still uses all the following prefs
|
||||
// [NOTE] replace the * with a slash in the line above to re-enable active ones
|
||||
// FF116
|
||||
// 4506: set RFP's font visibility level (1402) [FF94+]
|
||||
// [-] https://bugzilla.mozilla.org/1838415
|
||||
// user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1]
|
||||
// FF117
|
||||
// 1221: disable Windows Microsoft Family Safety cert [FF50+] [WINDOWS]
|
||||
// 0=disable detecting Family Safety mode and importing the root
|
||||
// 1=only attempt to detect Family Safety mode (don't import the root)
|
||||
// 2=detect Family Safety mode and import the root
|
||||
// [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/21686
|
||||
// [-] https://bugzilla.mozilla.org/1844908
|
||||
user_pref("security.family_safety.mode", 0);
|
||||
// 7018: disable service worker Web Notifications [FF44+]
|
||||
// [WHY] Web Notifications are behind a prompt (7002)
|
||||
// [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/
|
||||
// [-] https://bugzilla.mozilla.org/1842457
|
||||
// user_pref("dom.webnotifications.serviceworker.enabled", false);
|
||||
// ***/
|
||||
|
||||
/* END: internal custom pref to test for syntax errors ***/
|
||||
user_pref("_user.js.parrot", "SUCCESS: No no he's not dead, he's, he's restin'!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user