electron/spec/fixtures/extensions/host-permissions/privileged-tab-info/manifest.json
Shelley Vohr f369b144d6
feat: add more extensions manifest key options (#39599)
feat: add more manifest key options
2023-08-28 10:02:22 -04:00

14 lines
No EOL
295 B
JSON

{
"name": "privileged-tab-info",
"version": "0.1",
"manifest_version": 3,
"content_scripts": [{
"matches": [ "<all_urls>"],
"js": ["main.js"],
"run_at": "document_start"
}],
"host_permissions": ["http://*/*"],
"background": {
"service_worker": "background.js"
}
}