mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* add audio scribe sample * Fix wrong parameter name * Cleanup and more robust audio scribe * better manifest descriptions * demo chat app clean up
22 lines
535 B
JSON
22 lines
535 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Alt Texter",
|
|
"version": "1.0",
|
|
"description": "Generates alt text for images using the Gemini Nano Prompt API.",
|
|
"permissions": ["contextMenus", "clipboardWrite"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"minimum_chrome_version": "138",
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|