gtk/firefox-kde/vendor.js
Chaoting Liu ba87e2ccdc firefox-kde: fixing update error for addons
- temporarily all for non-https requests
- enable release
- minor fix: remove the geo location for mozilla
- add more comments on mozconfig
2017-01-09 12:01:10 +00:00

19 lines
688 B
JavaScript

// Use LANG environment variable to choose locale
pref("intl.locale.matchOS", true);
// Disable default browser checking.
pref("browser.shell.checkDefaultBrowser", false);
pref("browser.search.defaultenginename", "DuckDuckGo");
pref("browser.search.order.extra.duckduckgo", "DuckDuckGo");
pref("browser.search.selectedEngine", "DuckDuckGo");
// Don't disable our bundled extensions in the application directory
pref("extensions.autoDisableScopes", 11);
pref("extensions.shownSelectionUI", true);
// Default e10s support to be enabled
pref("browser.tabs.remote.autostart", true);
// Skip builtinCert check for addon update request
pref("extensions.update.requireBuiltInCerts", false);