03d5fe
diff -up mozilla-aurora/browser/app/profile/firefox.js.addons mozilla-aurora/browser/app/profile/firefox.js
3a67ab
--- mozilla-aurora/browser/app/profile/firefox.js.addons	2015-03-12 13:21:14.000000000 +0100
3a67ab
+++ mozilla-aurora/browser/app/profile/firefox.js	2015-03-12 14:25:39.974909169 +0100
03d5fe
@@ -65,7 +65,8 @@ pref("extensions.hotfix.certs.1.sha1Fing
03d5fe
 
03d5fe
 // Disable add-ons that are not installed by the user in all scopes by default.
03d5fe
 // See the SCOPE constants in AddonManager.jsm for values to use here.
03d5fe
-pref("extensions.autoDisableScopes", 15);
03d5fe
+pref("extensions.autoDisableScopes", 0);
03d5fe
+pref("extensions.showMismatchUI", false);
03d5fe
 
03d5fe
 // Dictionary download preference
03d5fe
 pref("browser.dictionaries.download.url", "https://addons.mozilla.org/%LOCALE%/firefox/dictionaries/");
03d5fe
diff -up mozilla-aurora/toolkit/mozapps/extensions/internal/XPIProvider.jsm.addons mozilla-aurora/toolkit/mozapps/extensions/internal/XPIProvider.jsm
3a67ab
--- mozilla-aurora/toolkit/mozapps/extensions/internal/XPIProvider.jsm.addons	2015-03-12 14:25:39.975909166 +0100
3a67ab
+++ mozilla-aurora/toolkit/mozapps/extensions/internal/XPIProvider.jsm	2015-03-12 15:23:05.879366812 +0100
3a67ab
@@ -2102,11 +2102,7 @@ this.XPIProvider = {
3a67ab
 
3a67ab
       AddonManagerPrivate.markProviderSafe(this);
3a67ab
 
3a67ab
-      if (aAppChanged === undefined) {
3a67ab
-        // For new profiles we will never need to show the add-on selection UI
3a67ab
-        Services.prefs.setBoolPref(PREF_SHOWN_SELECTION_UI, true);
3a67ab
-      }
3a67ab
-      else if (aAppChanged && !this.allAppGlobal &&
3a67ab
+      if (aAppChanged && !this.allAppGlobal &&
3a67ab
                Preferences.get(PREF_EM_SHOW_MISMATCH_UI, true)) {
3a67ab
         if (!Preferences.get(PREF_SHOWN_SELECTION_UI, false)) {
3a67ab
           // Flip a flag to indicate that we interrupted startup with an interactive prompt
3a67ab
@@ -2126,6 +2122,9 @@ this.XPIProvider = {
3a67ab
             flushCaches = true;
3a67ab
           }
3a67ab
         }
3a67ab
+      } else {
3a67ab
+        // For new profiles we will never need to show the add-on selection UI
3a67ab
+        Services.prefs.setBoolPref(PREF_SHOWN_SELECTION_UI, true);
03d5fe
       }
3a67ab
 
3a67ab
       if (flushCaches) {