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
25 lines
565 B
JSON
25 lines
565 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Calendar Mate",
|
|
"version": "1.0",
|
|
"description": "Create Google Calendar events from selected text using Gemini Nano.",
|
|
"permissions": ["contextMenus"],
|
|
"minimum_chrome_version": "138",
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png"
|
|
}
|
|
}
|
|
}
|