-
Notifications
You must be signed in to change notification settings - Fork 0
/
freenitro.html
98 lines (88 loc) · 2.49 KB
/
freenitro.html
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
<!DOCTYPE html>
<html>
<script>
function onClick() {
var button = document.getElementById("button");
console.log("button added");
document.getElementById("text1").classList.toggle("show");
document.getElementById("text2").classList.toggle("show");
button.disabled = true;
console.log("button disabled");
setTimeout(() => {
document.getElementById("troll").classList.toggle("show");
}, 5900);
setTimeout(() => {
location.href =
"https://www.youtube.com/watch?v=dQw4w9WgXcQ?autoplay=1";
}, 6000);
(async () => {
for (let i = 5; i > -1; i--) {
await new Promise((resolve) => setTimeout(resolve, 1000));
document.getElementById("counter").textContent = i;
}
})();
}
</script>
<head>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Free Nitro Plugin</title>
<style>
.btn {
background-color: #bd93f9;
border: none;
color: white;
padding: 12px 30px;
cursor: pointer;
font-size: 20px;
}
.btn:hover {
background-color: #9775c7;
}
.show {
display: none;
}
</style>
</head>
<body>
<div style="padding: 24px"></div>
<p>
Filename: freeNitro.plugin.js<br /><br />This plugin unlocks all the
Discord Nitro features, for free!
</p>
<center>
<button id="button" class="btn" onclick="onClick()">
<i class="fa fa-download"></i> Download
</button>
</center>
<p id="text1" class="show">
Your download will start in <span id="counter">...</span> seconds.
</p>
<p id="text2" class="show" style="font-size: 20px">
If the download fails, click
<a
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ?autoplay=1"
style="padding: 0px; text-decoration: underline"
>here</a
>
</p>
<img
src="https://upload.wikimedia.org/wikipedia/en/9/9a/Trollface_non-free.png"
id="troll"
class="show"
/>
<div
style="
position: absolute;
bottom: 5px;
color: lightgray;
align-items: right;
"
>
[Full credit to Strencher#1044 on Discord for the redirect JS]
</div>
</body>
</html>