-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (38 loc) · 776 Bytes
/
Copy pathmanifest.json
File metadata and controls
39 lines (38 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"manifest_version": 3,
"name": "QuixAnswer",
"version": "2025.10.09",
"description": "AI chatbot that provides quick and simple answers in your Chrome sidebar",
"permissions": [
"storage",
"activeTab",
"sidePanel",
"scripting",
"tabs"
],
"host_permissions": [
"https://api.groq.com/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css": ["sidebar.css"],
"run_at": "document_end"
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "QuixAnswer Settings",
"default_popup": "popup.html"
},
"icons": {
"128": "icons/icon.png"
}
}