Skip to content

Commit fd860e6

Browse files
flip RFP newwin max values, closes #1286
1 parent d1d20b8 commit fd860e6

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

user.js

+7-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* README:
99
1010
1. Consider using Tor Browser if it meets your needs or fits your threat model
11-
* https://www.torproject.org/about/torusers.html.en
11+
* https://2019.www.torproject.org/about/torusers.html
1212
2. Required reading: Overview, Backing Up, Implementing, and Maintenance entries
1313
* https://github.com/arkenfox/user.js/wiki
1414
3. If you skipped step 2, return to step 2
@@ -479,7 +479,7 @@ user_pref("_user.js.parrot", "1200 syntax error: the parrot's a stiff!");
479479
* no unsafe renegotiations on the channel between the browser and the server.
480480
* [STATS] SSL Labs (July 2021) reports over 99% of sites have secure renegotiation [4]
481481
* [1] https://wiki.mozilla.org/Security:Renegotiation
482-
* [2] https://tools.ietf.org/html/rfc5746
482+
* [2] https://datatracker.ietf.org/doc/html/rfc5746
483483
* [3] https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555
484484
* [4] https://www.ssllabs.com/ssl-pulse/ ***/
485485
user_pref("security.ssl.require_safe_negotiation", true);
@@ -1031,12 +1031,11 @@ user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs")
10311031
* RFP also has a few side effects: mainly timezone is UTC0, and websites will prefer light theme
10321032
* [1] https://bugzilla.mozilla.org/418986 ***/
10331033
user_pref("privacy.resistFingerprinting", true);
1034-
/* 4502: set new window sizes to round to hundreds [FF55+] [SETUP-CHROME]
1035-
* Width will round down to multiples of 200s and height to 100s, to fit your screen.
1036-
* The max values are a starting point to round from if you want some control
1034+
/* 4502: set new window size rounding max values [FF55+]
1035+
* [SETUP-CHROME] sizes round down in hundreds: width to 200s and height to 100s, to fit your screen
10371036
* [1] https://bugzilla.mozilla.org/1330882 ***/
1038-
// user_pref("privacy.window.maxInnerWidth", 1000);
1039-
// user_pref("privacy.window.maxInnerHeight", 1000);
1037+
user_pref("privacy.window.maxInnerWidth", 1600);
1038+
user_pref("privacy.window.maxInnerHeight", 900);
10401039
/* 4503: disable mozAddonManager Web API [FF57+]
10411040
* [NOTE] To allow extensions to work on AMO, you also need 2662
10421041
* [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/
@@ -1221,7 +1220,7 @@ user_pref("dom.targetBlankNoOpener.enabled", true); // [DEFAULT: true]
12211220
* string is restored if the tab reverts back to the original page. This change prevents some cross-site attacks
12221221
* [TEST] https://arkenfox.github.io/TZP/tests/windownamea.html ***/
12231222
user_pref("privacy.window.name.update.enabled", true); // [DEFAULT: true]
1224-
/* 6050: prefsCleaner: reset previously active items removed from arkenfox FF91+ ***/
1223+
/* 6050: prefsCleaner: reset previously active items removed from arkenfox FF92+ ***/
12251224
// placeholder
12261225

12271226
/*** [SECTION 7000]: DON'T BOTHER ***/

0 commit comments

Comments
 (0)