We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://developer.chrome.com/blog/mv2-transition/
The problem is that currently Firefox does not support background.service_worker: https://developer.chrome.com/docs/extensions/migrating/to-service-workers/. Basically, we cannot use the same manifest nor the same codebase 😞
background.service_worker
Another potential issue is that XMLHttpRequest must be replaced by fetch: https://developer.chrome.com/docs/extensions/migrating/to-service-workers/#replace-xmlhttprequest The problem is that Asciidoctor.js processing is synchronous:
XMLHttpRequest
fetch
It might still be possible to use XMLHttpRequest from the page.
The text was updated successfully, but these errors were encountered:
It's still possible to upload a new version of an existing extension using manifest v2 on the Chrome WebStore. However, it's not possible on Edge:
Sorry, something went wrong.
No branches or pull requests
https://developer.chrome.com/blog/mv2-transition/
The problem is that currently Firefox does not support
background.service_worker
: https://developer.chrome.com/docs/extensions/migrating/to-service-workers/. Basically, we cannot use the same manifest nor the same codebase 😞Another potential issue is that
XMLHttpRequest
must be replaced byfetch
: https://developer.chrome.com/docs/extensions/migrating/to-service-workers/#replace-xmlhttprequestThe problem is that Asciidoctor.js processing is synchronous:
It might still be possible to use XMLHttpRequest from the page.
The text was updated successfully, but these errors were encountered: