Skip to content

Commit ed9bc33

Browse files
9999 revamp fixups
1 parent f84f9b7 commit ed9bc33

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

user.js

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,12 +1600,13 @@ user_pref("browser.urlbar.decodeURLsOnCopy", true);
16001600
/* END: internal custom pref to test for syntax errors ***/
16011601
user_pref("ghacks_user.js.parrot", "No no he's not dead, he's, he's restin'! Remarkable bird, the Norwegian Blue");
16021602

1603-
/*** 9999: DEPRECATED / REMOVED / LEGACY
1603+
/*** 9999: DEPRECATED / REMOVED / LEGACY / RENAMED
16041604
Documentation denoted as [-]. Numbers may be re-used. See [1] for a link-clickable,
16051605
viewer-friendly version of the deprecated bugzilla tickets. To enable a section
16061606
change /* FFxx to // FFxx. The original state of each pref has been preserved,
16071607
or changed to match the current setup, but you are advised to review them.
1608-
[1] https://github.com/ghacksuserjs/ghacks-user.js/issues/123 ***/
1608+
[1] https://github.com/ghacksuserjs/ghacks-user.js/issues/123
1609+
***/
16091610
/* FF42 and older
16101611
// 2607: (25+) disable page thumbnails - replaced by browser.pagethumbnails.capturing_disabled
16111612
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=897811
@@ -1625,7 +1626,7 @@ user_pref("network.websocket.enabled", false);
16251626
// [1] https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/API/CameraControl/
16261627
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1107683
16271628
user_pref("camera.control.autofocus_moving_callback.enabled", false);
1628-
// 0415: (FF41+) disable reporting URLs - removed or replaced by various
1629+
// 0415: (41+) disable reporting URLs (safe browsing) - removed or replaced by various
16291630
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1109475
16301631
user_pref("browser.safebrowsing.reportErrorURL", ""); // browser.safebrowsing.reportPhishMistakeURL
16311632
user_pref("browser.safebrowsing.reportGenericURL", ""); // removed
@@ -1635,6 +1636,9 @@ user_pref("browser.safebrowsing.reportURL", ""); // removed
16351636
// 1804: (41+) disable plugin enumeration
16361637
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1169945
16371638
user_pref("plugins.enumerable_names", "");
1639+
// 2614: (41+) disable HTTP2 (draft)
1640+
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1132357
1641+
user_pref("network.http.spdy.enabled.http2draft", false);
16381642
// 2803: (42+) clear passwords on shutdown
16391643
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1102184
16401644
// user_pref("privacy.clearOnShutdown.passwords", false);
@@ -1657,31 +1661,30 @@ user_pref("browser.safebrowsing.malware.reportURL", ""); // browser.safebrowsing
16571661
// [1] http://kb.mozillazine.org/Pfs.datasource.url
16581662
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1202193
16591663
user_pref("pfs.datasource.url", "");
1660-
// 2614: disable HTTP2
1661-
// [-]
1662-
user_pref("network.http.spdy.enabled.http2draft", false);
16631664
// 3003: disable new search panel UI
16641665
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1119250
16651666
// user_pref("browser.search.showOneOffButtons", false);
16661667
// ***/
16671668
/* FF44
16681669
// 0414: disable safebrowsing's real-time binary checking (google) (FF43+)
1669-
// [-]
1670+
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1237103
16701671
user_pref("browser.safebrowsing.provider.google.appRepURL", ""); // browser.safebrowsing.appRepURL
16711672
// 1200's: block rc4 whitelist
1672-
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1201025
16731673
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1215796
16741674
user_pref("security.tls.insecure_fallback_hosts.use_static_list", false);
16751675
// 2301: disable SharedWorkers
16761676
// [1] https://bugs.torproject.org/15562
16771677
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1207635
16781678
user_pref("dom.workers.sharedWorkers.enabled", false);
16791679
// 2403: disable scripts changing images
1680+
// [TEST] http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_img_src2
1681+
// [WARNING] Will break some sites such as Google Maps and a lot of web apps
16801682
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=773429
16811683
// user_pref("dom.disable_image_src_set", true);
16821684
// ***/
16831685
/* FF45
1684-
// 1005: disable deferred level of storing extra session data 0=all 1=http-only 2=none
1686+
// 1021b: disable deferred level of storing extra session data 0=all 1=http-only 2=none
1687+
// extra session data contains contents of forms, scrollbar positions, cookies and POST data
16851688
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1235379
16861689
user_pref("browser.sessionstore.privacy_level_deferred", 2);
16871690
// ***/
@@ -1725,7 +1728,7 @@ user_pref("browser.history.allowReplaceState", false);
17251728
// 0806: disable 'unified complete': 'Search with [default search engine]'
17261729
// [1] http://techdows.com/2016/05/firefox-unified-complete-aboutconfig-preference-removed.html
17271730
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1181078
1728-
// user_pref("browser.urlbar.unifiedcomplete", false);
1731+
user_pref("browser.urlbar.unifiedcomplete", false);
17291732
// ***/
17301733
/* FF49
17311734
// 0372: disable "Hello"
@@ -1752,15 +1755,14 @@ user_pref("dom.push.udp.wakeupEnabled", false);
17521755
// 0101: disable Windows10 intro on startup [WINDOWS]
17531756
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1274633
17541757
user_pref("browser.usedOnWindows10.introURL", "");
1755-
// 0308: disable update plugin notifications
1758+
// 0308: disable plugin update notifications
17561759
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1277905
17571760
user_pref("plugins.update.notifyUser", false);
17581761
// 0410: disable "Block dangerous and deceptive content"- replaced by browser.safebrowsing.phishing.enabled
17591762
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1025965
17601763
// user_pref("browser.safebrowsing.enabled", false);
17611764
// 1266: disable rc4 ciphers
1762-
// [1] https://www.fxsitecompat.com/en-CA/docs/2016/rc4-support-has-been-completely-removed/
1763-
// [2] https://trac.torproject.org/projects/tor/ticket/17369
1765+
// [1] https://trac.torproject.org/projects/tor/ticket/17369
17641766
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1268728
17651767
user_pref("security.ssl3.ecdhe_ecdsa_rc4_128_sha", false);
17661768
user_pref("security.ssl3.ecdhe_rsa_rc4_128_sha", false);

0 commit comments

Comments
 (0)