Files
chrome-extensions-samples/functional-samples/ai.gemini-on-device/manifest.json
Sebastian Benz e1ad9ce8f0 Add gemini nano sample (#1234)
Add gemini nano sample

---------

Co-authored-by: Oliver Dunk <oliverdunk@google.com>
2024-07-22 17:44:44 +00:00

23 lines
527 B
JSON

{
"name": "Chrome Built-in AI Demo",
"version": "0.1",
"manifest_version": 3,
"description": "Try the built-in AI preview in Chrome.",
"background": {
"service_worker": "background.js"
},
"permissions": ["sidePanel"],
"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"
}
}