mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
16 lines
285 B
JSON
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/*"
|
|
]
|
|
}
|