forked from wheatup/TwitchChatDanmaku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 862 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
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "2.0.4",
"description": "__MSG_appDescription__",
"background": {
"service_worker": "src/js/background/background.js",
"type": "module"
},
"icons": {
"128": "icons/icon-128.png",
"48": "icons/icon-48.png",
"16": "icons/icon-16.png"
},
"permissions": ["fontSettings", "storage"],
"host_permissions": ["*://*.twitch.tv/*"],
"content_scripts": [
{
"css": ["src/css/app.css"],
"matches": ["*://*.twitch.tv/*"],
"js": ["src/js/app/danmaku/default.js", "src/js/app/danmaku/scroll.js", "src/js/app/app.js"]
}
],
"action": {
"default_title": "__MSG_appName__",
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"default_popup": "popup.html"
},
"default_locale": "en"
}