mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
12 lines
258 B
JSON
12 lines
258 B
JSON
{
|
|
"name": "Scripting API Demo",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"background": {
|
|
"service_worker": "sw.js"
|
|
},
|
|
"permissions": ["scripting", "webNavigation", "storage"],
|
|
"host_permissions": ["https://example.com/*"],
|
|
"action": {}
|
|
}
|