41 lines
925 B
JSON
41 lines
925 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "AI Assistant",
|
|
"version": "1.1.0",
|
|
"description": "Monitors audio and answers questions in real-time using AI",
|
|
"permissions": [
|
|
"tabCapture",
|
|
"storage",
|
|
"activeTab",
|
|
"scripting",
|
|
"sidePanel"
|
|
],
|
|
"host_permissions": [
|
|
"https://*/*",
|
|
"http://*/*",
|
|
"https://api.openai.com/*",
|
|
"https://api.anthropic.com/*",
|
|
"https://generativelanguage.googleapis.com/*",
|
|
"https://api.deepseek.com/*",
|
|
"http://localhost:11434/*"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
},
|
|
"side_panel": {
|
|
"default_path": "sidepanel.html"
|
|
},
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
}
|