-
-
Notifications
You must be signed in to change notification settings - Fork 97
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
"Extension is not installed" - Firefox Hoppscotch Plugin Issue #240
Comments
|
I had the same troubles of setting the extension up. There should be some hint regarding the 2 necessary options mentioned by you two above:
|
Have same issue here. Only after enabling "Access your data for all websites" request to e.g. "https://www.google.de" can be made Using |
I experienced this same issue and kept tinkering around in my user.js to see if it was a profile issue, but it was apparently a manifest v3 issue?(not really an issue). This Section mentions that the host_permissions are optional and that extensions do not prompt the user to provide these permissions as of now.
This is true even today This issue can be solved by prompting the user to provide access to ://hoppscotch.io/ by using browser.permissions.contains({
origins: ["*://hoppscotch.io/*"],
}) This shall get a The documentation for this can be found here This issue is Firefox specific and does not seem to affect Chromium. Prompting the user to provide the permission would be the most friendly approach to solve this imo. The popup can give a warning and reference which shows how to provide the necessary permissions. |
Newest version of the plugin (Version 0.28) doesn't work on both Firefox Developers Edition 121.0b9 (64-bit) and Firefox.
Fix: Rolled back to version 0.25 and the issue was gone.
The text was updated successfully, but these errors were encountered: