blob: ff42f10b07bcfe73dc1e4d5a0fd249b4be313c38 (
plain)
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
|
// Use LANG environment variable to choose locale
pref("intl.locale.matchOS", true);
// Disable default browser checking.
pref("browser.shell.checkDefaultBrowser", false);
// Don't disable our bundled extensions in the application directory
pref("extensions.autoDisableScopes", 11);
pref("extensions.shownSelectionUI", true);
// Make sure that safebrowsing is disabled
pref("browser.safebrowsing.enabled", false);
pref("browser.safebrowsing.malware.enabled", false);
pref("keyword.URL", "");
pref("app.update.enabled", false);
pref("app.update.auto", false);
pref("dom.storage.enabled", false);
// Enable gstreamer support
pref("media.gstreamer.enabled", true);
// Disable Social API
pref("social.remote-install.enabled", false);
// Disable missing nonfree flash notification
pref("plugins.notifyMissingFlash", false);
|