-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript-gm.js
43 lines (39 loc) · 1 KB
/
script-gm.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
// You need GM_xmlhttpRequest to use this
// with tampermonkey @grant GM_xmlhttpRequest
let glx = GM_xmlhttpRequest;
function ch() {
return new Promise((resolve, reject) => {
glx({
method: "GET",
url: "http://localhost:5000/get_hwid_status",
onload: function(rp) {
if (rp.status === 200) {
const rs = JSON.parse(rp.responseText);
resolve(rs.status === "valid");
} else {
hx()
re()
}
},
onerror: function() {
hx()
re()
}
});
});
}
function hx() {
document.body.style.display = "none"; }
function re() {
window.location.href = "https://github.com/iAlperenS";
}
ch().then(isValid => {
if (isValid) {
} else {
hx()
re()
}
}).catch(error => {
hx()
re()
});