mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* Add API sample for chrome.scripting API. * Run formatter. * Address feedback. * Update licence headers. * Invert tab colours.
18 lines
282 B
JSON
18 lines
282 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": {}
|
|
}
|