-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinject.js
42 lines (30 loc) · 1.11 KB
/
inject.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
// alert("")
function code() {
// Get all elements that have a style attribute
var elms = document.querySelectorAll("*[style]");
// Loop through them
Array.prototype.forEach.call(elms, function (elm) {
// Get the color value
var clr = elm.style.background || "";
// Remove all whitespace, make it all lower case
clr = clr.replace(/\s/g, "").toLowerCase();
// Switch on the possible values we know of
if (clr == "rgb(47,52,55)") {
console.log(clr);
}
elm.style.background = null;
});
}
var i = 1; // set your counter to 1
function myLoop() { // create a loop function
setTimeout(function() { // call a 3s setTimeout when the loop is called
code(); // your code here
i++; // increment the counter
if (i < 30000/50) { // if the counter < 30000/50, call the loop function
myLoop(); // .. again which will trigger another
} // .. setTimeout()
}, 50)
}
myLoop(); // start the loop
setTimeout(() => {
}, 7000);