mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
23 lines
527 B
JSON
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"
|
|
}
|
|
}
|