mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* webRequest onAuthRequired sample * Update background.js * Update api-samples/webRequest/manifest.json Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> * Update manifest.json * Update background.js * Update background.js * Changed background to service worker * Update manifest.json * Update service-worker.js * Changed folder organization * Update api-samples/webRequest/http-auth/service-worker.js Co-authored-by: Oliver Dunk <oliverdunk@google.com> * Update api-samples/webRequest/http-auth/manifest.json Co-authored-by: Oliver Dunk <oliverdunk@google.com> * Added readme and corrected code * Corrected readme * Update manifest.json * Update api-samples/webRequest/http-auth/http-auth.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/webRequest/http-auth/http-auth.md Co-authored-by: Joe Medley <jmedley@google.com> * Update service-worker.js * Update manifest.json --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> Co-authored-by: Oliver Dunk <oliverdunk@google.com> Co-authored-by: Joe Medley <jmedley@google.com>
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/*"
|
|
]
|
|
}
|