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
options_page
Chrome supports two keys to specify the options page:
options_ui
MDN reports that options_page is deprecated and so does Parcel's schema:
parcel/packages/transformers/webextension/src/schema.js
Line 289 in 53633df
However that doesn't reflect reality, Chrome does not deem the key deprecated in their docs and even Firefox eventually added support for it: https://bugzilla.mozilla.org/show_bug.cgi?id=1816960
You can find further reasoning in the bugzilla.
options_page should be equivalent to options_ui.page
options_ui.page
The key is ignored and the specified options.html is not processed.
options.html
{ "$schema": "https://json.schemastore.org/chrome-manifest", "name": "options_page minimal extension", "version": "0.0.0", "manifest_version": 3, "options_page": "options.html" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🙋 feature request
Chrome supports two keys to specify the options page:
options_ui
options_page
MDN reports that
options_page
is deprecated and so does Parcel's schema:parcel/packages/transformers/webextension/src/schema.js
Line 289 in 53633df
However that doesn't reflect reality, Chrome does not deem the key deprecated in their docs and even Firefox eventually added support for it: https://bugzilla.mozilla.org/show_bug.cgi?id=1816960
You can find further reasoning in the bugzilla.
🤔 Expected Behavior
options_page
should be equivalent tooptions_ui.page
😯 Current Behavior
The key is ignored and the specified
options.html
is not processed.💻 manifest.json demo
The text was updated successfully, but these errors were encountered: