-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter.js
100 lines (83 loc) · 2.16 KB
/
twitter.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
// JavaScript Document
function do_twitter_like(){
console.log("Doing Twitter 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.querySelector('[data-testid="confirmationSheetConfirm"]');
if((div) && (div.textContent==="Like")){
div.click();
return true;
}
div = document.querySelector('div[aria-label="Like"]');
if (div){
div.click();
return true;
}
return false;
}
function do_twitter_follow(){
console.log("Doing Twitter 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 div = document.querySelector('[data-testid="confirmationSheetConfirm"]');
if(!div){
div = document.querySelector('div[aria-label^="Follow @"]');
}
var tc = '';
if(div){
tc = div.textContent;
if (tc.toLowerCase().includes("follow")) {
div.click();
} else {
console.log("invalid confirmation sheet")
}
return true;
}
return false;
}
var twitter_done = false;
function do_twitter(){
// wait for 5 seconds
if(tick_count < 2) { return; }
if(tick_count > _TIMEOUT_IN_SECS) {
// timeout
window.close();
}
if(twitter_done) { return; }
twitter_done = true;
console.log("config.actionType = "+config.actionType);
if (config.actionType === _ACTION_TYPE_TWITTER_LIKE) {
do_twitter_like();
return;
}
if (config.actionType === _ACTION_TYPE_TWITTER_FOLLOW) {
do_twitter_follow();
return;
}
}