-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (34 loc) · 1.01 KB
/
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
38
39
40
{
"manifest_version": 2,
"name": "Better Mixer",
"version": "1.8.1",
"author": "Andrej Zbín",
"description": "Theatre mode, cleaner channel and more QoL improvements",
"icons": {
"48": "icons/48.png",
"96": "icons/96.png"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png"
},
"default_title": "Change settings?",
"default_popup": "settings.html"
},
"options_ui": {
"page": "settings.html"
},
"permissions": ["storage"],
"content_scripts": [
{
"matches": ["*://*.mixer.com/*"],
"js": ["js/jquery-3.4.1.min.js", "js/options.js", "js/elements.js", "js/components.js", "js/keyboard.js", "js/theatre.js", "js/cleansite.js", "js/chatmessages.js", "js/index.js"],
"css": ["css/theatre.css"]
}
],
"web_accessible_resources": [
"css/cleansite/spark-badges.css", "css/cleansite/purchase.css", "css/cleansite/avatars.css", "css/cleansite/compact.css", "css/chatmessages/base.css"
]
}