mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
Moves from the Glitch URL to chrome.dev, and removes the host permissions as we now set CORS headers.
26 lines
593 B
JSON
26 lines
593 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Quick API Reference",
|
|
"description": "Quick API can speed up the building of Chrome extensions.",
|
|
"version": "1.0.0",
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "service-worker.js",
|
|
"type": "module"
|
|
},
|
|
"minimum_chrome_version": "102",
|
|
"omnibox": {
|
|
"keyword": "api"
|
|
},
|
|
"permissions": ["alarms", "storage"],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://developer.chrome.com/docs/extensions/reference/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
]
|
|
}
|