-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 887 Bytes
/
manifest.json
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
{
"manifest_version": 3,
"name": "Bloom Connector",
"version": "0.0.0",
"permissions": ["downloads", "tabs", "notifications"],
"host_permissions": ["<all_urls>", "http://localhost:5000/*"],
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "./background.ts"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"disabled_icon": {
"16": "icon-disabled.png",
"32": "icon-disabled.png",
"48": "icon-disabled.png",
"128": "icon-disabled.png"
},
"icon-when-queued": {
"16": "icon-when-queued.png",
"32": "icon-when-queued.png",
"48": "icon-when-queued.png",
"128": "icon-when-queued.png"
}
}
}