/* User-interface tweaks */ /* Don't do anything when I start the browser unless I say so. * * References: * * 1. http://kb.mozillazine.org/Browser.startup.homepage */ user_pref("browser.startup.homepage", "about:blank"); /* Don't hide important information in the URL bar * * References: * * 1. https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/Preference_reference/browser.urlbar.trimURLs * */ user_pref("browser.urlbar.trimURLs", false); /* Don't allow unicode trickery in the URL bar. * * References: * * 1. http://kb.mozillazine.org/Network.IDN_show_punycode * 2. https://ma.ttias.be/show-idn-punycode-firefox-avoid-phishing-urls/ * */ user_pref("network.IDN_show_punycode", true);