mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* 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
27 lines
655 B
JSON
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"]
|
|
}
|
|
]
|
|
}
|