Files
chrome-extensions-samples/functional-samples/tutorial.quick-api-reference/manifest.json
amysteamdev 0cd692076e [New tutorial] Open Chrome API docs (condensed) (#851)
* First draft

* Rename folder

* Tweak comments

* Update index.html

* remove extra closing div

* Rename sw file

* Apply first round of @sebastianbenz suggestions

* Fix import

* Update popover

* Second tech review round

* Removed long list of suggestions
Only show past history

* Move host permissions

* Rename extension and folder

* REmove await

* Move icons into images folder
2023-03-22 12:05:35 -05:00

27 lines
655 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"],
"host_permissions": ["https://extension-tips.glitch.me/*"],
"content_scripts": [
{
"matches": ["https://developer.chrome.com/docs/extensions/reference/*"],
"js": ["content.js"]
}
]
}