Files
webextensions-examples/stored-credentials/manifest.json
Simeon Vincent 3d52dce7c8 Remove Chrome support
@rebloor [noted][1] that the root readme states that "examples are tested in Firefox." This change removes Chrome support in order to accurately reflect the framing established in the README.

[1]: https://github.com/mdn/webextensions-examples/pull/565#issuecomment-2241954087
2025-03-09 17:14:12 -07:00

36 lines
709 B
JSON

{
"description": "Performs basic authentication by supplying stored credentials.",
"manifest_version": 3,
"name": "stored-credentials",
"version": "2.0",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/stored-credentials",
"icons": {
"48": "icons/lock.svg"
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "54.0a1"
}
},
"background": {
"scripts": ["storage.js", "auth.js"]
},
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"webRequestAuthProvider",
"storage"
],
"host_permissions": [
"https://httpbin.org/basic-auth/*"
]
}