Initial setup
This commit is contained in:
39
manifest.json
Normal file
39
manifest.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "AI Interview Assistant",
|
||||
"version": "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/*",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user