]> gitweb.michael.orlitzky.com - firefox-user-prefs.git/blob - speculation
Whitespace changes.
[firefox-user-prefs.git] / speculation
1 /* Disabling speculative fetching */
2
3
4 /* Disable speculative DNS queries.
5 *
6 * References:
7 *
8 * 1. http://kb.mozillazine.org/Network.dns.disablePrefetch
9 */
10 user_pref("network.dns.disablePrefetch", true);
11
12
13 /* Disable speculative HTTP requests.
14 *
15 * References:
16 *
17 * 1. http://kb.mozillazine.org/Network.prefetch-next
18 *
19 */
20 user_pref("network.prefetch-next", false);
21
22
23 /* Disable speculation while I'm typing a URL.
24 *
25 * References:
26 *
27 * 1. https://wiki.mozilla.org/Privacy/Privacy_Task_Force/firefox_about_config_privacy_tweeks
28 */
29 user_pref("browser.urlbar.speculativeConnect.enabled", false);
30