Skip to content

Commit 8c0bce8

Browse files
authored
Merge pull request #548 from jxdv/speculative-content
add speculativeConnect
2 parents 877132f + 2ff966d commit 8c0bce8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ Settings that do not belong to other sections or are user specific preferences.
211211
* Prevent leaking application locale/date format using JavaScript [ [1](https://bugzilla.mozilla.org/show_bug.cgi?id=867501) [2](https://hg.mozilla.org/mozilla-central/rev/52d635f2b33d) ]
212212
* Do not submit invalid URIs entered in the address bar to the default search engine [ [1](http://kb.mozillazine.org/Keyword.enabled) ]
213213
* Don't trim HTTP off of URLs in the address bar. [ [1](https://bugzilla.mozilla.org/show_bug.cgi?id=665580) ]
214+
* Disable preloading of autocomplete URLs. [ [1](https://wiki.mozilla.org/Privacy/Privacy_Task_Force/firefox_about_config_privacy_tweeks) ]
214215
* Don't try to guess domain names when entering an invalid domain name in URL bar [ [1](http://www-archive.mozilla.org/docs/end-user/domain-guessing.html) ]
215216
* When browser.fixup.alternate.enabled is enabled, strip password from 'user:password@...' URLs [ [1](https://github.com/pyllyukko/user.js/issues/290#issuecomment-303560851) ]
216217
* Send DNS request through SOCKS when SOCKS proxying is in use [ [1](https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/WebBrowsers) ]

Diff for: user.js

+4
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,10 @@ user_pref("keyword.enabled", false);
247247
// https://bugzilla.mozilla.org/show_bug.cgi?id=665580
248248
user_pref("browser.urlbar.trimURLs", false);
249249

250+
// PREF: Disable preloading of autocomplete URLs.
251+
// https://wiki.mozilla.org/Privacy/Privacy_Task_Force/firefox_about_config_privacy_tweeks
252+
user_pref("browser.urlbar.speculativeConnect.enabled", false);
253+
250254
// PREF: Don't try to guess domain names when entering an invalid domain name in URL bar
251255
// http://www-archive.mozilla.org/docs/end-user/domain-guessing.html
252256
user_pref("browser.fixup.alternate.enabled", false);

0 commit comments

Comments
 (0)