-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Firefox #177
Comments
Thank you for the investigation! I haven't fully recovered yet so it may take a while before the next release, but the next minor will include the files for both Chrome and Firefox users to install the extension locally. I managed to get it working on Firefox when I was working on #137 |
That is fantastic |
I was trying to hold off the next minor for Firefox support, but in an effort to get the ball rolling again, I'll cut a quick minor release for the inspector button as mentioned in #166 (comment). Thank you for waiting, Firefox users :) |
The PR has been merged! There's still a couple of things to polish like the font-size not adjusting with the zoom level (unlike chromium-based browsers), but we can now use the extension with Firefox by loading it as a temporary add-on. Be sure to also enable "Always Allow on localhost" in the extension settings. Simply grab the |
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:
This lead me to the following issue:
mozilla/web-ext#2532
Firefox does not support service workers at the moment. Changing from
service_worker
toscripts
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:https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/web_accessible_resources
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.
The text was updated successfully, but these errors were encountered: