-
Notifications
You must be signed in to change notification settings - Fork 1
/
user.js
29 lines (19 loc) · 996 Bytes
/
user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// https://superuser.com/a/130052
pref('browser.ctrlTab.recentlyUsedOrder', false);
// disable automatic updates, because we're always installing the latest version
// doesn't work anymore, needed to do it with policies instead: https://support.mozilla.org/en-US/kb/customizing-firefox-using-policiesjson
// pref('app.update.auto', false);
// pref('app.update.enabled', false);
// welcome to Firefox
pref('trailhead.firstrun.didSeeAboutWelcome', true);
// disable nag when entering about:config
pref('browser.aboutConfig.showWarning', false);
// https://stackoverflow.com/a/47353456
pref('datareporting.policy.firstRunURL', '');
pref('browser.shell.checkDefaultBrowser', false);
// https://wiki.mozilla.org/Firefox/Normandy/PreferenceRollout
// pref('app.normandy.first_run', false);
pref('app.shield.optoutstudies.enabled', false);
pref('datareporting.healthreport.uploadEnabled', false);
// no need, since we "fresh-install" weekly
pref('extensions.update.autoUpdateDefault', false);