-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiktok.js
93 lines (78 loc) · 1.98 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
function do_tiktok_like() {
state = _STATE_WAIT_TO_CLOSE;
wait_time = 10 - Math.floor(Math.random() * 5);
chrome.storage.local.get('speedTempo', function (result) {
if (result.speedTempo) {
if (result.speedTempo == 'slow') {
wait_time = 15 - Math.floor(Math.random() * 10);
}
if (result.speedTempo == 'normal') {
wait_time = 10 - Math.floor(Math.random() * 5);
}
if (result.speedTempo == 'fast') {
wait_time = 3 - Math.floor(Math.random() * 3);
}
}
})
var div = document.querySelectorAll('div.engagement-icon-v23');
if ((!div) || (div.length < 1)) {
div = document.querySelector('span[data-e2e="like-icon"');
}
else {
div = div[0];
}
if (div) {
console.log("Clicked !");
click(div);
return true;
}
return false;
}
function do_tiktok_follow(){
state = _STATE_WAIT_TO_CLOSE;
wait_time = 10 - Math.floor(Math.random() * 5);
chrome.storage.local.get('speedTempo', function (result) {
if (result.speedTempo) {
if (result.speedTempo == 'slow') {
wait_time = 15 - Math.floor(Math.random() * 10);
}
if (result.speedTempo == 'normal') {
wait_time = 10 - Math.floor(Math.random() * 5);
}
if (result.speedTempo == 'fast') {
wait_time = 3 - Math.floor(Math.random() * 3);
}
}
})
var btns = document.getElementsByTagName("button");
if(!btns) { return false; }
if(btns.length < 1) { return false; }
//btns[0].click();
for(var i=0; i<btns.length; i++){
if(btns[i].textContent == "Follow") {
//btns[i].click();
click(btns[i]);
return true;
}
}
}
var tiktok_done = false;
function do_tiktok(){
// wait for 5 seconds
if(tick_count < 2) { return; }
if(tick_count > _TIMEOUT_IN_SECS) {
// timeout
window.close();
}
if(tiktok_done) { return; }
tiktok_done = true;
console.log("config.actionType = "+config.actionType);
if (config.actionType === _ACTION_TYPE_TIKTOK_LIKE) {
do_tiktok_like();
return;
}
if (config.actionType === _ACTION_TYPE_TIKTOK_FOLLOW) {
do_tiktok_follow();
return;
}
}