home · contact · privacy
WIP
[config] / buster / etc_files / user / opt / firefox / firefox.cfg
1 // do not put any code into this first line, as it gets ignored by Firefox
2
3 // we zero extensions.autoDisableScopes so our pre-installed extensions activate by default
4 pref("extensions.autoDisableScopes", 0);
5
6 // we turn off annoying setup popups and pages; these settings are the result more of trial and error than thorough understanding by me, so more research might be warranted to discipline them
7 pref("startup.homepage_welcome_url", "file:///opt/firefox/blank.html");
8 pref("browser.startup.homepage", "file:///opt/firefox/blank.html");
9 pref("browser.startup.blankWindow", true);
10 pref("datareporting.policy.firstRunURL", "");
11 pref("browser.shell.checkDefaultBrowser", false);
12 pref("datareporting.policy.dataSubmissionPolicyBypassNotification", true);
13
14 // use socks proxy by default
15 pref("network.proxy.type", 1);
16 pref("network.proxy.socks", "localhost");
17 pref("network.proxy.socks_port", 9999);
18 pref("network.proxy.remote_dns", true);