forked from yingslim/OxBIG_hackathon
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (29 loc) · 717 Bytes
/
manifest.json
File metadata and controls
30 lines (29 loc) · 717 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
{
"manifest_version": 3,
"name": "OnDemand's Compulse Control ChatBot",
"version": "1.0",
"description": "Send queries to OnDemand's agent and receive responses.",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_popup": "sidepanel.html",
"default_icon": "icon.png"
},
"permissions": ["storage", "activeTab", "scripting"],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://api.on-demand.io/*",
"http://127.0.0.1:8001/*",
"http://127.0.0.1:8000/*",
"ws://127.0.0.1:8000/*",
"ws://127.0.0.1:8001/*"
],
"externally_connectable": {
"matches": ["*://*.google.com/*"]
}
}