Initial setup

This commit is contained in:
2025-09-23 21:12:15 +02:00
commit 246506b177
20 changed files with 2275 additions and 0 deletions

39
manifest.json Normal file
View 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"
}
}