-
Notifications
You must be signed in to change notification settings - Fork 0
/
yt.js
82 lines (70 loc) · 1.85 KB
/
yt.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
function do_yt_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);
}
}
})
btn = document.querySelector('button[aria-label^="like"');
if(btn){
btn.click();
} else {
console.log("like button not found !");
}
}
function do_yt_sub() {
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);
}
}
})
if (document.querySelector('button[aria-label^="Subscribe to"]')) {
buttons = document.querySelector('button[aria-label^="Subscribe to"]')
buttons.click()
} else {
console.log("No Subscribe button found :()");
return;
}
}
var youtube_done = false;
function do_youtube(){
// wait for 5 seconds
if(tick_count < 2) { return; }
if(tick_count > _TIMEOUT_IN_SECS) {
// timeout
window.close();
}
if(youtube_done) { return; }
youtube_done = true;
console.log("youtube_done");
console.log("config.actionType = "+config.actionType);
if (config.actionType === _ACTION_TYPE_YT_SUB) {
console.log("do_yt_sub");
do_yt_sub();
return;
}
if (config.actionType === _ACTION_TYPE_YT_LIKE) {
console.log("do_yt_like");
do_yt_like();
return;
}
}