Files
chrome-extensions-samples/api-samples/webRequest/http-auth/manifest.json
IanStanion-google ebea82d8a3 Update manifest.json
2023-05-22 08:38:26 -04:00

16 lines
285 B
JSON

{
"name": "webRequest.onAuthRequired Demo",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "service-worker.js"
},
"permissions": [
"webRequest",
"webRequestAuthProvider"
],
"host_permissions": [
"https://httpbin.org/*"
]
}