Files
webextensions-examples/stored-credentials/manifest.json
wbamberg 5dd59a4028 Example of the webRequest.onAuthRequired API (#206)
* Example of the webRequest.onAuthRequired API

* Update README, add applications.id to manifest
2017-04-14 13:34:05 -07:00

32 lines
637 B
JSON

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