Bug 767965 - Web App Runtime should disable installation of distribution extensions. r=gavin

This commit is contained in:
Blair McBride 2012-06-26 14:30:45 +12:00
parent 61058bf288
commit 7bfdb88efc

View File

@ -11,6 +11,8 @@ pref("extensions.enabledScopes", 1);
pref("extensions.autoDisableScopes", 1);
// Disable add-on installation via the web-exposed APIs
pref("xpinstall.enabled", false);
// Disable installation of distribution add-ons
pref("extensions.installDistroAddons", false);
// Whether or not we've ever run. We use this to set permissions on firstrun.
pref("webapprt.firstrun", false);