Bug 1801129 - Enable unified extensions UI in all channels. r=mconley,rpl

Differential Revision: https://phabricator.services.mozilla.com/D162765
This commit is contained in:
William Durand 2022-11-23 14:02:17 +00:00
Родитель c33867c99d
Коммит 5f5239215d
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -73,6 +73,9 @@ pref("xpinstall.signatures.devInfoURL", "https://wiki.mozilla.org/Addons/Extensi
// Enable extensionStorage storage actor by default
pref("devtools.storage.extensionStorage.enabled", true);
// Enable the unified extensions UI by default.
pref("extensions.unifiedExtensions.enabled", true);
// Dictionary download preference
pref("browser.dictionaries.download.url", "https://addons.mozilla.org/%LOCALE%/firefox/language-tools/");

Просмотреть файл

@ -1954,12 +1954,9 @@ pref("extensions.eventPages.enabled", true);
pref("extensions.manifestV2.actionsPopupURLRestricted", false);
// Whether "manifest_version: 3" extensions should be allowed to install successfully.
pref("extensions.manifestV3.enabled", true);
// Whether to enable the unified extensions feature.
#ifdef NIGHTLY_BUILD
pref("extensions.unifiedExtensions.enabled", true);
#else
pref("extensions.unifiedExtensions.enabled", false);
#endif
// Whether to enable the unified extensions feature. Note that this pref is
// enabled for Firefox Desktop in `browser/app/profile/firefox.js`.
pref("extensions.unifiedExtensions.enabled", false);
// Whether to enable the updated openPopup API.
#ifdef NIGHTLY_BUILD
pref("extensions.openPopupWithoutUserGesture.enabled", true);