-
Notifications
You must be signed in to change notification settings - Fork 1
/
tiktok.js
125 lines (112 loc) · 3.13 KB
/
tiktok.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
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
115
116
117
118
119
120
121
122
123
124
125
(function () {
function pushMessage(data){
try {
chrome.runtime.sendMessage(chrome.runtime.id, { "message": data }, function(e){});
} catch(e){}
}
function toDataURL(url, callback) {
var xhr = new XMLHttpRequest();
xhr.onload = function() {
var reader = new FileReader();
reader.onloadend = function() {
callback(reader.result);
}
reader.readAsDataURL(xhr.response);
};
xhr.open('GET', url);
xhr.responseType = 'blob';
xhr.send();
}
function processMessage(ele){
var chatimg="";
try{
chatimg = ele.childNodes[0].querySelector("img");
if (!chatimg){
chatimg = "";
} else {
chatimg = chatimg.src;
}
} catch(e){}
var chatname = "";
var chatmessage = "";
try{
chatname = ele.childNodes[1].childNodes[0].innerText;
chatmessage = ele.childNodes[1].childNodes[1].innerHTML;
} catch(e){}
var data = {};
data.chatname = chatname;
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = chatmessage;
data.chatimg = chatimg;
data.hasDonation = "";
data.hasMembership = "";;
data.contentimg = "";
data.type = "tiktok";
if (data.chatimg){
toDataURL(data.chatimg, function(dataUrl) {
data.chatimg = dataUrl;
pushMessage(data);
});
} else {
data.chatimg = "";
pushMessage(data);
}
}
setTimeout(function(){
console.log("STARTED SOCIAL STREAM");
var onMutationsObserved = function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length) {
for (var i = 0, len = mutation.addedNodes.length; i < len; i++) {
try {
if (mutation.addedNodes[i].dataset && mutation.addedNodes[i].dataset.testid && (mutation.addedNodes[i].dataset.testid=="chat-message")){ // ui-chat__item--message
processMessage(mutation.addedNodes[i])
}
} catch(e){}
}
}
});
};
var target = document.querySelector('[data-testid="chat-room"]');
if (!target){return;}
var config = { childList: true, subtree: true };
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(onMutationsObserved);
observer.observe(target, config);
},1000);
var textOnlyMode = false;
chrome.runtime.sendMessage(chrome.runtime.id, { "getSettings": true }, function(response){ // {"state":isExtensionOn,"streamID":channel, "settings":settings}
if ("settings" in response){
if ("textonlymode" in response.settings){
textOnlyMode = response.settings.textonlymode;
}
}
});
chrome.runtime.onMessage.addListener(
function (request, sender, sendResponse) {
try{
if ("focusChat" == request){
if (!document.querySelector('.public-DraftEditorPlaceholder-inner')){
sendResponse(false);
return;
}
document.querySelector(".public-DraftEditorPlaceholder-inner").focus();
sendResponse(true);
return;
}
if ("textOnlyMode" == request){
textOnlyMode = true;
sendResponse(true);
return;
} else if ("richTextMode" == request){
textOnlyMode = false;
sendResponse(true);
return;
}
} catch(e){ }
sendResponse(false);
}
);
})();