Description
It would be great to add support for Firefox to the devtools. It looks as though the developer tools API for Firefox is based off of Chromium, with some limitations:
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Extending_the_developer_tools
Building and loading this locally I receive the following error:
background.service_worker is currently disabled
This lead me to the following issue:
Firefox does not support service workers at the moment. Changing from service_worker
to scripts
allows me to load the extension:
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/background
I then receive a warning message about the web_accessible_resources.world
property, which isn't supported:
Which was also encountered by the EmberJS team, resolved by moving the resource under content_scripts
:
emberjs/ember-inspector#2501
After getting the warnings removed I am able to load the plugin it does not detect Svelte.