-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
114 lines (110 loc) · 3.11 KB
/
manifest.json
File metadata and controls
114 lines (110 loc) · 3.11 KB
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
104
105
106
107
108
109
110
111
112
113
114
{
"manifest_version": 2,
"name": "MSync",
"version": "4.0.0",
"description": "Extension to syncronize websites and MChad desktop app",
"icons": {
"48": "icons/icon-48.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["*://www.youtube.com/watch?v=*"],
"js": ["InjectBtnYoutube.js"]
},
{
"run_at": "document_end",
"matches": ["*://www.youtube.com/live_chat*"],
"js": ["InjectBtnYoutubeLC.js"]
},
{
"run_at": "document_end",
"matches": ["https://www.youtube.com/live_chat?v=*"],
"js": ["InjectYoutubeChatHome.js"],
"all_frames": true
},
{
"run_at": "document_end",
"matches": ["*://www.twitch.tv/videos/*"],
"js": ["InjectBtnTwitch.js"]
},
{
"run_at": "document_end",
"matches": ["*://www.twitch.tv/popout/*/chat*"],
"js": ["InjectBtnTwitchLC.js"]
},
{
"run_at": "document_end",
"matches": ["*://www.twitch.tv/*"],
"js": ["InjectBtnTwitchLive.js"]
},
{
"run_at": "document_end",
"matches": ["https://www.twitch.tv/embed/*/chat?*"],
"js": ["InjectTwitchChatHome.js"],
"all_frames": true
},
{
"run_at": "document_end",
"matches": ["*://live.bilibili.com/*"],
"js": ["InjectBtnBiliBiliLive.js"]
},
{
"run_at": "document_end",
"matches": ["*://www.bilibili.com/video/*"],
"js": ["InjectBtnBiliBili.js"]
},
{
"run_at": "document_end",
"matches": ["https://player.bilibili.com/player.html*"],
"js": ["InjectBiliBiliEmbed.js"],
"all_frames": true
},
{
"run_at": "document_end",
"matches": ["*://www.nicovideo.jp/watch/*"],
"js": ["InjectBtnNND.js"]
},
{
"run_at": "document_end",
"matches": ["https://embed.nicovideo.jp/watch/*"],
"js": ["InjectNNDEmbed.js"],
"all_frames": true
},
{
"run_at": "document_end",
"matches": ["*://live2.nicovideo.jp/watch/*", "*://live.nicovideo.jp/watch/*"],
"js": ["InjectBtnNNDLive.js"]
},
{
"run_at": "document_end",
"matches": ["https://twitcasting.tv/*/embeddedplayer/*"],
"js": ["InjectTwitcastEmbed.js"],
"all_frames": true
},
{
"run_at": "document_end",
"matches": ["*://twitcasting.tv/*/movie*", "*://*.twitcasting.tv/*/movie*"],
"js": ["InjectBtnTwitcast.js"]
},
{
"run_at": "document_end",
"exclude_matches": ["https://twitcasting.tv/*/embeddedplayer/*"],
"matches": ["*://twitcasting.tv/*", "*://*.twitcasting.tv/*"],
"js": ["InjectBtnTwitcastLive.js"]
}
],
"permissions": [
"*://www.youtube.com/*",
"*://twitcasting.tv/*",
"*://*.twitcasting.tv/*",
"*://www.twitch.tv/videos/*",
"*://www.twitch.tv/*",
"*://live.bilibili.com/*",
"*://www.bilibili.com/video/*",
"*://www.nicovideo.jp/watch/*",
"*://live2.nicovideo.jp/watch/*",
"*://live.nicovideo.jp/watch/*",
"https://repo.mchatx.org/"
]
}