Skip to content
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

Open
jeanjacquescollective opened this issue Dec 18, 2023 · 5 comments

Comments

@jeanjacquescollective
Copy link

Newest version of the plugin (Version 0.28) doesn't work on both Firefox Developers Edition 121.0b9 (64-bit) and Firefox.

image

Fix: Rolled back to version 0.25 and the issue was gone.

@amk-dev
Copy link
Contributor

amk-dev commented Dec 19, 2023

can you confirm that you've selected Always Allow On hoppscotch.io on the extension settings. We've upgraded to Manifest V3 in the latest release, which gives users more control over the extension permissions.

Here is how to enable it if you need it,

  1. click on the extensions icon on your browser bar
  2. right click on the hoppscotch extension
  3. make sure you've selected Always Allow On hoppscotch.io

https://blog.mozilla.org/addons/2022/11/17/unified-extensions-button-and-how-to-handle-permissions-in-manifest-v3/

image

@loudsven
Copy link

Always Allow On hoppscotch.io fixes this issue.
But there is another problem: "Could not send request"
Everything works only if I enable Access your data for all websites.
But in this case, the active origins list makes no sense.

@sibbl
Copy link

sibbl commented Feb 5, 2024

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:

  • "Access your data for all websites" as described above
  • right click > Manage Extensions > Permissions tab > enable "Access your data for all websites".

@Ralf1108
Copy link

Ralf1108 commented Feb 7, 2024

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
Firefox 122.0.1 (64-Bit)
Hoppscotch Plugin Version 0.31

@mohamedarish
Copy link

mohamedarish commented Feb 16, 2024

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.

Most browsers treat host_permission as optional. If you request permissions using this key, users may get prompted to grant those permissions during installation. As of June 2023, Safari, Firefox, and some Chromium-based browsers don't prompt the user during installation.

This is true even today February 2024

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 Promise<boolean>

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants