-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInjectTwitcastEmbed.js
60 lines (54 loc) · 1.72 KB
/
InjectTwitcastEmbed.js
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
function TransmitTime(vid) {
if (parent) {
setInterval(() => {
parent.postMessage({
n: "MSyncXMChatX",
d: vid.currentTime*1000
},"https://app.mchatx.org");
}, 50);
}
}
function OpenReceiver(vid) {
window.addEventListener('message', (e) => {
if (e.origin == "https://app.mchatx.org") {
if (e.data.n == "MChatXXMSync") {
switch (e.data.d) {
case "s":
vid.play();
break;
case "p":
vid.pause();
break;
case "w":
if (vid.paused) {
vid.play();
} else {
vid.pause();
}
break;
default:
if (typeof e.data.d == 'number'){
vid.currentTime += e.data.d/1000;
}
break;
}
}
}
});
}
function Load() {
if ((document.referrer == "https://app.mchatx.org/") && (window.location != parent.location)) {
var i = 0;
const intv = setInterval(() => {
i++;
if (document.getElementsByTagName('video').length > 0) {
TransmitTime(document.getElementsByTagName('video')[0]);
OpenReceiver(document.getElementsByTagName('video')[0]);
clearInterval(intv);
} if (i == 30){
clearInterval(intv);
}
}, 1000);
}
}
Load();