3. What OS (Operating System) are you using?
Linux
4. Upload logs.txt
There was an error during the temporary add-on installation.
Error details
background.service_worker is currently disabled. Add background.scripts.
5. Message
Hi,
I am trying to load this extension as a temporary add-on in Firefox, but the installation fails with the following error:
Error details: background.service_worker is currently disabled. Add background.scripts.
Reason:
It seems the manifest.json is configured strictly for Chrome's Manifest V3 implementation. While Firefox supports MV3, it currently requires background scripts to be defined using background.scripts rather than background.service_worker.
Suggested Fix:
In manifest.json, the background section needs to be updated to support Firefox.
Current (Chrome):
"background": {
"service_worker": "background.js"
}
Proposed Change (Firefox Compatible):
"background": {
"scripts": ["background.js"]
}
Could you please update the manifest or provide a Firefox-compatible build?
Thanks!
3. What OS (Operating System) are you using?
Linux
4. Upload logs.txt
There was an error during the temporary add-on installation.
Error details
background.service_worker is currently disabled. Add background.scripts.
5. Message
Hi,
I am trying to load this extension as a temporary add-on in Firefox, but the installation fails with the following error:
Reason:
It seems the
manifest.jsonis configured strictly for Chrome's Manifest V3 implementation. While Firefox supports MV3, it currently requires background scripts to be defined usingbackground.scriptsrather thanbackground.service_worker.Suggested Fix:
In
manifest.json, the background section needs to be updated to support Firefox.Current (Chrome):
Proposed Change (Firefox Compatible):
Could you please update the manifest or provide a Firefox-compatible build?
Thanks!