-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json.chrome
67 lines (66 loc) · 1.42 KB
/
manifest.json.chrome
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "Booyah.tv",
"version": "1.36",
"description": "Mejora la experiencia de Booyah.live",
"manifest_version": 3,
"permissions": ["tabs"],
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"content_scripts": [
{
"css": [
"css/jquery.modal.min.css",
"css/jquery-ui.css",
"css/emotes.css",
"css/autocomplete.css"
],
"js": [
"libs/jquery.min.js",
"libs/jquery-ui.min.js",
"libs/jquery.modal.min.js",
"libs/tmi.min.js",
"libs/tabcomplete.min.js",
"content_scripts/emotes.js"
],
"matches": ["https://booyah.live/*"],
"exclude_matches": [
"https://booyah.live/standalone/chatroom/chat-list*"
]
},
{
"js": [
"libs/jquery.min.js",
"content_scripts/bttv.js"
],
"matches": ["https://betterttv.com/emotes/*"],
"exclude_matches": [
"https://betterttv.com/dashboard/emotes/upload"
]
},
{
"js": [
"libs/jquery.min.js",
"content_scripts/ffz.js"
],
"matches": ["https://www.frankerfacez.com/emoticon/*"]
},
{
"js": [
"libs/jquery.min.js",
"content_scripts/7tv.js"
],
"matches": ["https://7tv.app/*"]
}
],
"web_accessible_resources": [
{ "resources":["resources/icons/emote-menu.png","resources/icons/twitch.svg","resources/badges/staff.png", "resources/sounds/blip.wav"],
"matches": ["https://booyah.live/*"]
}
],
"background": {
"service_worker": "background.js"
}
}