-
Notifications
You must be signed in to change notification settings - Fork 75
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
version 2.0.2+ doesn't work on Firefox: service_worker is not supported #147
Comments
Hi, |
Oh noted. I tried the 2.1.0 release and it have me the same "background.service_worker is currently disabled" error |
This sounds like a manifest v2/v3 issue. Are you aware of #38? |
yep i tried #38 and i was able to intstall vs 2.0.1 on firefox which worked flawlessly . v 2.0.1 and v 2.0.2 "background": there is a reference to service worker in v 2.0.2 and v 2.1.0 other errors can be resolved with the solutions present in #103 |
So what is your error currently? |
Main issue being that if i add v 2.0.1 to the ff then it get added and works without issue since it doesnt have background service worker. whereas the counterpart v 2.0.2 or 2.1.0 has background service worker which throws an error when added to ff. as ff doesnt support background service worker. and i was wondering if anyhow it would be possible to run the v2.0.2 upwards on ff. |
The service worker is a manifest v3 thing I believe, so this makes sense. You could port it back to manifest v2 and convert the service worker to a background page just like you did. You could also figure out if Firefox supports manifest v3 (last time I checked it didn't). |
Hey kamzone, |
Hi @OnlyNandan, did you manage to make it work? |
Hey, |
For context - what does Firefox do differently or otherwise still not support that's making this remain a blocker for newer versions of the extension? And what about version 2.0.1? Is that fine? |
Its with regards to firefox not supporting manifest v3 yet |
@OnlyNandan is there something they haven't implemented yet, or something I'm missing, since according to this they already have it available? |
Installed v2.0.2. had to change manifest.txt as it gave me a /background/service_worker" is not supported error. so i changed it to
},
"background": {
"scripts": ["background.js"]
},
the add on was uploaded properly. but when i open whatsapp i get nothing in that extension
The text was updated successfully, but these errors were encountered: