]> gitweb.michael.orlitzky.com - firefox-user-prefs.git/blob - ui
tracking: disable DNS-over-HTTPS and the "Normandy" service.
[firefox-user-prefs.git] / ui
1 /* User-interface tweaks */
2
3
4 /* Don't do anything when I start the browser unless I say so.
5 *
6 * References:
7 *
8 * 1. http://kb.mozillazine.org/Browser.startup.homepage
9 */
10 user_pref("browser.startup.homepage", "about:blank");
11
12
13 /* Don't hide important information in the URL bar
14 *
15 * References:
16 *
17 * 1. https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/Preference_reference/browser.urlbar.trimURLs
18 *
19 */
20 user_pref("browser.urlbar.trimURLs", false);
21
22
23 /* Don't allow unicode trickery in the URL bar.
24 *
25 * References:
26 *
27 * 1. http://kb.mozillazine.org/Network.IDN_show_punycode
28 * 2. https://ma.ttias.be/show-idn-punycode-firefox-avoid-phishing-urls/
29 *
30 */
31 user_pref("network.IDN_show_punycode", true);
32