forked from aaronpk/live-chat-overlay
-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
94 lines (94 loc) · 2.88 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "Chat Overlay for Youtube, Twitch & more",
"description": "Add live chat from Youtube, Twitch, Restream and more to your OBS as a browser overlay. Feature requests accepted!",
"manifest_version": 2,
"version": "1.2.10",
"homepage_url": "http://chat.overlay.ninja/",
"icons": {
"128": "icons/icon-128.png"
},
"permissions": [
"https://*.sli.do/*", "https://youtube.com/*", "https://www.youtube.com/*", "https://studio.youtube.com/*", "https://www.twitch.tv/*", "https://glimesh.tv/*", "https://chat.restream.io/*", "https://www.instagram.com/*", "https://instagram.com/*", "https://trovo.live/chat/*", "https://www.twitter.com/*", "https://www.twitter.com/*", "https://facebook.com/*", "https://*.zoom.us/*", "https://www.facebook.com/*", "https://www.mobcrush.com/*", "https://www.crowdcast.io/e/*", "https://www.polleverywhere.com/discourses/*", "https://viz.polleverywhere.com/discourses/*", "storage"
],
"content_scripts": [
{
"css": ["main.css"],
"js": ["jquery.js", "youtube.js"],
"matches": ["https://youtube.com/live_chat*", "https://www.youtube.com/live_chat*", "https://studio.youtube.com/live_chat*"]
},
{
"css": ["main.css"],
"js": ["slido.js"],
"matches": ["https://*.sli.do/*"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "twitch.js"],
"matches": ["https://www.twitch.tv/popout/*"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "glimesh.js"],
"matches": ["https://glimesh.tv/*/chat"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "restream.js"],
"matches": ["https://chat.restream.io/*"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "trovo.js"],
"matches": ["https://trovo.live/chat/*"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "instagram.js"],
"matches": ["https://instagram.com/*","https://www.instagram.com/*"]
},
{
"css": ["main.css"],
"js": ["instalive.js"],
"matches": ["https://instagram.com/*/live/","https://www.instagram.com/*/live/"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "twitter.js"],
"matches": ["https://twitter.com/*","https://www.twitter.com/*"]
},
{
"css": ["main.css"],
"js": ["facebook.js"],
"matches": ["https://facebook.com/*","https://www.facebook.com/*"]
},
{
"css": ["main.css"],
"js": ["jquery.js", "mobcrush.js"],
"matches": ["https://www.mobcrush.com/*/chat.slobs"]
},
{
"css": ["main.css"],
"js": ["crowdcast.js"],
"matches": ["https://www.crowdcast.io/e/*"]
},
{
"css": ["main.css"],
"js": ["zoom.js"],
"matches": ["https://*.zoom.us/*"]
},
{
"css": [],
"js": ["withyt.js"],
"matches": ["https://*.withyoutube.com/*"]
},
{
"css": ["main.css"],
"js": ["polleverywhere.js"],
"matches": ["https://www.polleverywhere.com/discourses/*", "https://viz.polleverywhere.com/discourses/*"],
"all_frames": true
}
],
"options_ui": {
"page": "settings/options.html"
}
}