-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 980 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": "GoogleSlide Comment Stream",
"version": "4.0.3",
"permissions": ["storage", "downloads"],
"background": {
"service_worker": "background/background.ts"
},
"content_scripts": [
{
"matches": ["https://docs.google.com/presentation/d/*/edit"],
"match_about_blank": true,
"js": ["content_script/stream.ts", "content_script/presenter_subscribe.ts"]
},
{
"matches": ["https://docs.google.com/presentation/d/e/*/askquestion?*"],
"match_about_blank": true,
"js": ["content_script/sakura.ts"]
}
],
"options_page": "options.html",
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "images/16x16.png",
"32": "images/32x32.png",
"48": "images/48x48.png",
"128": "images/128x128.png"
}
},
"icons": {
"16": "images/16x16.png",
"32": "images/32x32.png",
"48": "images/48x48.png",
"128": "images/128x128.png"
}
}