forked from steveseguin/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
103 lines (103 loc) · 3.31 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
95
96
97
98
99
100
101
102
103
{
"name": "Social Stream Ninja",
"description": "Powerful tooling to engage live chat on Youtube, Twitch, Zoom, and more",
"manifest_version": 2,
"version": "1.17.2",
"homepage_url": "http://socialstream.ninja/",
"icons": {
"128": "icons/icon-128.png"
},
"background": {
"scripts": ["./thirdparty/webmidi3.js", "background.js"],
"persistent": true
},
"permissions": [
"https://chat.restream.io/chat*", "https://*.telegram.org/*", "https://*.webex.com/*", "https://webex.com/*", "https://www.linkedin.com/video/event/*", "https://*.vdo.ninja/*popout.html*","https://youtube.com/*", "https://www.youtube.com/*", "https://studio.youtube.com/*", "https://www.twitch.tv/*", "https://www.instagram.com/*/live/*", "https://www.tiktok.com/*/live", "https://chat.restream.io/*", "https://trovo.live/chat/*", "https://facebook.com/*", "https://web.facebook.com/*", "https://www.facebook.com/*", "https://play.rozy.tv/*", "https://www.crowdcast.io/e/*", "https://*.zoom.us/*", "https://watch.owncast.online/*", "https://discord.com/channels/*", "https://www.mixcloud.com/live/*/chat/", "https://vimeo.com/live-chat/*", "https://www.vimeo.com/live-chat/*", "https://teams.live.com/*", "https://teams.microsoft.com/*", "https://livestream.com/accounts/*", "https://*/plugins/livechat/*router/webchat/room/*", "storage", "debugger"
],
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": ["youtube.js"],
"matches": ["https://youtube.com/live_chat*", "https://www.youtube.com/live_chat*", "https://studio.youtube.com/live_chat*"]
},
{
"js": ["twitch.js"],
"matches": ["https://www.twitch.tv/popout/*"]
},
{
"js": ["facebook.js"],
"matches": ["https://facebook.com/*", "https://web.facebook.com/*", "https://www.facebook.com/*"]
},
{
"js": ["owncast.js"],
"matches": ["https://watch.owncast.online/*"]
},
{
"js": ["zoom.js"],
"matches": ["https://*.zoom.us/*"]
},
{
"js": ["crowdcast.js"],
"matches": ["https://www.crowdcast.io/e/*"]
},
{
"js": ["discord.js"],
"matches": ["https://discord.com/channels/*"]
},
{
"js": ["mixcloud.js"],
"matches": ["https://www.mixcloud.com/live/*/chat/"]
},
{
"js": ["vimeo.js"],
"matches": ["https://www.vimeo.com/live-chat/*", "https://vimeo.com/live-chat/*"]
},
{
"js": ["livestream.js"],
"matches": ["https://livestream.com/accounts/*"]
},
{
"js": ["teams.js"],
"matches": ["https://teams.live.com/*", "https://teams.microsoft.com/*"],
"all_frames": true
},
{
"js": ["peertube.js"],
"matches": ["https://*/plugins/livechat/*router/webchat/room/*"]
},
{
"js": ["instagramlive.js"],
"matches": ["https://www.instagram.com/*/live/*"]
},
{
"js": ["tiktok.js"],
"matches": ["https://www.tiktok.com/*/live"]
},
{
"js": ["vdoninja.js"],
"matches": ["https://*.vdo.ninja/*popout.html*"]
},
{
"js": ["linkedin.js"],
"matches": ["https://www.linkedin.com/video/event/*"]
},
{
"js": ["webex.js"],
"matches": ["https://*.webex.com/*", "https://webex.com/*"],
"all_frames": true
},
{
"js": ["telegram.js"],
"matches": ["https://*.telegram.org/*"]
},
{
"js": ["restream.js"],
"matches": ["https://chat.restream.io/chat*"]
}
],
"options_ui": {
"page": "settings/options.html"
}
}