Files
chrome-extensions-samples/functional-samples/ai.gemini-on-device/manifest.json
Sebastian Benz a8aec773d8 add audio scribe sample (#1475)
* add audio scribe sample

* Fix wrong parameter name

* Cleanup and more robust audio scribe

* better manifest descriptions

* demo chat app clean up
2025-05-20 08:37:50 +02:00

24 lines
578 B
JSON

{
"name": "Chrome Prompt AI Demo",
"version": "0.2",
"manifest_version": 3,
"description": "Try Chrome's built-in prompt API built with Gemini Nano.",
"background": {
"service_worker": "background.js"
},
"permissions": ["sidePanel"],
"minimum_chrome_version": "138",
"side_panel": {
"default_path": "sidepanel/index.html"
},
"action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"default_title": "Open Chat Interface"
}
}