Bug 1642947 - Enable application panel in all channels r=Honza

Differential Revision: https://phabricator.services.mozilla.com/D81112
This commit is contained in:
Belén Albeza 2020-06-25 15:02:52 +00:00
Родитель 5dc443249c
Коммит f08228b977
2 изменённых файлов: 2 добавлений и 10 удалений

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

@ -2129,12 +2129,8 @@ pref("devtools.netmonitor.enabled", true);
pref("devtools.netmonitor.features.search", true);
pref("devtools.netmonitor.features.requestBlocking", true);
// Enable the Application panel on Nightly
#if defined(NIGHTLY_BUILD) || defined(MOZ_DEV_EDITION)
pref("devtools.application.enabled", true);
#else
pref("devtools.application.enabled", false);
#endif
// Enable the Application panel
pref("devtools.application.enabled", true);
// The default Network Monitor UI settings
pref("devtools.netmonitor.panes-network-details-width", 550);

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

@ -4,10 +4,6 @@
The Application panel is a Firefox Developer Tools panel meant to allow the inspection and debugging of features usually present in Progressive Web Apps, such as service workers or the Web App Manifest.
### How to enable the Application panel
At the moment, the panel is shown by default on Nightly and Dev Edition builds only, behind a configuration flag. In order to enable it, type `about:config` in the address bar, look for the `devtools.application.enabled` flag and set it to true. It will then appear as a tab with the rest of the panels within the Developer Tools toolbox.
## Technical overview
The Application panel is a React + Redux web app.