-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
291 lines (277 loc) · 10.5 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!DOCTYPE html>
<html lang="ru">
<head>
<link rel="icon" href="https://raw.githubusercontent.com/strobecsmain/QuickNet-AntiDPI/refs/heads/main/your_icon.ico" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="QuickNet - приложение для ускорения сервисов, восстановления доступа и обхода ограничений на популярных платформах.">
<meta name="keywords" content="QuickNet, ускорение сервисов, обход ограничений, доступ к YouTube, Discord, YouTube, 7tv">
<meta name="robots" content="index, follow">
<title>QuickNet - Ускорение сервисов</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400&display=swap&subset=cyrillic" rel="stylesheet">
<style>
.features-container {
background-color: #000;
display: flex;
flex-direction: column;
overflow: hidden;
padding: 5%;
}
.ascii-logo {
color: #ffffff;
font-family: 'JetBrains Mono', monospace;
text-align: center;
white-space: pre;
}
.features-grid {
margin-top: 5%;
}
.features-row {
gap: 3%;
display: flex;
}
.feature-card {
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.12);
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: start;
padding: 10px;
width: 100%;
font-family: 'JetBrains Mono', monospace;
font-weight: 400;
}
.feature-title_1 {
color: #fff;
text-align: center;
font-family: 'JetBrains Mono', monospace;
align-self: start;
}
.feature-title {
color: #fff;
font-family: 'JetBrains Mono', monospace;
text-align: center;
align-self: start;
}
.feature-title-how {
color: #fff;
font-family: 'JetBrains Mono', monospace;
text-align: center;
align-self: center;
}
.feature-description {
color: rgba(255, 255, 255, 0.6);
margin-top: 13px;
}
.download-section {
margin-top: 3%;
width: 100%;
max-width: 100%;
}
.download-row {
gap: 20px;
display: flex;
}
.download-button {
background-color: #fff;
color: #000;
text-align: center;
padding: 10px 70px;
font: 400 32px 'JetBrains Mono', monospace;
border: none;
cursor: pointer;
}
.version-info {
display: flex;
flex-direction: column;
font: 400 16px 'JetBrains Mono', monospace;
}
.unique-features {
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.12);
padding: 20px;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: start;
font-family: 'JetBrains Mono', monospace;
font-weight: 400;
}
.services-list {
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.12);
padding: 20px;
margin-top: 3%;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: start;
font-family: 'JetBrains Mono', monospace;
font-weight: 400;
max-width: 401px;
}
.footer-credit {
color: #fff;
text-align: center;
margin-top: 5%;
font: 400 12px 'JetBrains Mono', sans-serif;
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
@media (max-width: 991px) {
.features-container {
padding: 0 20px;
}
.features-grid {
max-width: 100%;
margin-top: 40px;
}
.features-row {
flex-direction: column;
align-items: stretch;
gap: 0;
}
.feature-card {
margin-top: 28px;
}
.download-row {
flex-direction: column;
align-items: stretch;
gap: 0;
}
.download-button {
margin-top: 28px;
padding: 0 20px;
}
.version-info {
margin-top: 28px;
}
.unique-features {
padding: 20px;
}
.footer-credit {
margin-top: 40px;
}
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/countapi.min.js"></script>
</head>
<body style="margin: 0;">
<section class="features-container">
<div class="ascii-logo">
<pre>
:::::::: ::: ::: ::::::::::: :::::::: ::: ::: :::: ::: :::::::::: :::::::::::
:+: :+: :+: :+: :+: :+: :+: :+: :+: :+:+: :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+
+#+ +:+ +#+ +#+ +#+ +#+ +#++:++ +#+ +:+ +#+ +#++:++# +#+
+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+#+# +#+ +#+
#+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+#+# #+# #+#+
########### ######## ########### ######## ### ### ### #### ########## ###
By SiresMacro & Dis
</pre>
</div>
<div class="features-grid">
<div class="features-row">
<article class="feature-card">
<h2 class="feature-title">Стабильность</h2>
<p class="feature-description">QuickNet использует zapret (winws). Этот инструмент, при помощи наших конфигураций и аргументов, быстро и метко обходит каждый тип защиты DPI. Кроме того, он потребляет малое количество ресурсов вашего ПК.</p>
</article>
<article class="feature-card">
<h2 class="feature-title">Быстродействие</h2>
<p class="feature-description">Запускать приложение нужно один раз. А дальше сервис winws будет работать в фоне при следующем запуске вашей системы.</p>
</article>
<article class="feature-card">
<h2 class="feature-title">Легкость использования</h2>
<p class="feature-description">Один раз запустил, выбрал установку в консоле и забыл. Если обход перестал работать, то просто запустите QuickNet, и обновление автоматически скачается на вашу систему. После чего повторно выберите установку.</p>
</article>
</div>
</div>
<section class="download-section">
<div class="download-row">
<a href="https://github.com/strobecsmain/QuickNet-AntiDPI/releases/download/QuickNetv3/QuickNet.Solution.v4.exe" target="_blank">
<button class="download-button" aria-label="Скачать QuickNet" onclick="incrementDownloadCount()">Скачать</button>
</a>
<script>
function incrementDownloadCount() {
countapi.hit('quicknet', 'download').then((result) => {
console.log('Downloads:', result.value);
});
}
</script>
<div class="version-info">
<h3 class="feature-title_1">QuickNet v4</h3>
<p class="feature-description">
Поддерживаемые OC: Windows 10, 11 и старее<br />
Вес: 8 мб<br />
Версия 0.3.7 от 06.11.2024
Количество загрузок: <span id="download-count">477</span>
</p>
<script>
function incrementDownloadCount() {
if (typeof countapi !== "undefined") {
countapi.hit('quicknet', 'download').then((result) => {
console.log('Downloads:', result.value);
}).catch((error) => {
console.error('CountAPI Error:', error);
});
} else {
console.error('CountAPI not defined.');
}
}
document.addEventListener("DOMContentLoaded", function () {
if (typeof countapi !== "undefined") {
countapi.get('quicknet', 'download').then((result) => {
document.getElementById('download-count').innerText = result.value;
}).catch((error) => {
console.error('CountAPI Get Error:', error);
});
}
});
</script>
</div>
</div>
</section>
<div style="margin-top: 30px;"></div>
<div class="unique-features">
<h2 class="feature-title-how">Что делает QuickNet уникальным</h2>
<p class="feature-description">Приложение автоматически скачивает обновления, подбирает под вас конфигурацию. После этого вы можете забыть о любых трудностях с доступом к вашим любимым сайтам и приложениям. Мы не храним ваши данные и не планируем это делать. Наш проект существует на добровольной основе и не требует оплаты.</p>
</div>
<article class="services-list">
<h2 class="feature-title">Ваши любимые сервисы</h2>
<p class="feature-description">
Вы можете пользоваться дальше вашими любимыми сервисами без ограничений:<br />
Discord<br />
YouTube / music / kids<br />
7tv<br />
Steam<br />
Twitch<br />
Pinterest<br />
Instagram
</p>
</article>
<!-- Put this script tag to the <head> of your page -->
<script type="text/javascript" src="https://vk.com/js/api/openapi.js?168"></script>
<script type="text/javascript">
VK.init({ apiId: 52422363, onlyWidgets: true });
</script>
<!-- Put this div tag to the place, where the Comments block will be -->
<div id="vk_comments"></div>
<script type="text/javascript">
VK.Widgets.Comments("vk_comments", {limit: 10, attach: "*"});
</script>
<footer class="footer-credit">Designed by SiresMacro</footer>
</section>
</body>
</html>