forked from Skoolgq/v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
117 lines (110 loc) · 4.61 KB
/
settings.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
<head>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/buttons.css">
<link rel="stylesheet" href="/css/navbar.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<script src="https://kit.fontawesome.com/204c1cf7c6.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700" rel="stylesheet">
<script src="/js/gsap/gsap.min.js"></script>
<script src="https://unpkg.com/@barba/core"></script>
<script src="https://cdn.counter.dev/script.js" data-id="b0b2d4b2-daca-47e1-9287-b9e649b3dcd2"
data-utcoffset="-5"></script>
<title>Skool | Settings</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.png">
</head>
<body class="light">
<nav class="navbar">
<div class="navbar-container container">
<input type="checkbox" name="" id="">
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<ul class="menu-items">
<!--<li><a href="https://dsc.gg/skoolworld" target="_blank"><i class="fa-brands fa-discord fa-lg"></i></a></li>-->
<li><a href="/">Home</a></li>
<li><a href="/games">Games</a></li>
<li><a href="/apps">Apps</a></li>
<li><a href="/links/mathhelp">Unblocker</a></li>
<li><a href="/hacks">Hacks</a></li>
<li>
<div id="theme-toggle">
<button id="light-mode" class="active" onclick="switchTheme('light')"
style="color: transparent; background-color: transparent; border-color: transparent; cursor: default; outline: 0;">
<i class="fas fa-sun fa-2xl" aria-hidden="true"></i><br>
</button>
<button id="dark-mode" onclick="switchTheme('dark')"
style="color: transparent; background-color: transparent; border-color: transparent; cursor: default; outline: 0;">
<i class="fas fa-moon fa-2xl" aria-hidden="true"></i><br>
</button>
</div>
</li>
</ul>
<h1 class="logo">Skool</h1>
</div>
</nav>
<script src="/js/navbar.js"></script>
<!--start editable-->
<br>
<br>
<br>
<br>
<p class="gamescategory" style="width: 300px;height: 55px;font-size: 45px;">Cloakers</p>
<br>
<br>
<div class="text-center">
<btn class="recent" onclick="google();cloak();">Cloak Google</btn>
<br>
<br><br>
<btn class="recent" onclick="classroom();cloak();">Cloak Google Classroom</btn>
<br>
<br><br>
<btn class="recent" onclick="drive();cloak();">Cloak Google Drive</btn>
<div class="form">
<div class="category" style="width: 600px;">Change Unblocker Backend</div>
<select id="uvBackend" class="textBox" onchange="updateBackend()">
<option value="obliged-gisele-thetatortotgod.koyeb.app">obliged-gisele-thetatortotgod.koyeb.app</option>
<option value="web.ngms.place">web.ngms.place</option>
</select>
<button class="btn">
Update!
</button>
</div>
<script>
const drive = () => localStorage.cloaker = JSON.stringify({
"title": "My Drive - Google Drive",
"icon": "https://ssl.gstatic.com/docs/doclist/images/drive_2022q3_32dp.png"
});
const classroom = () => localStorage.cloaker = JSON.stringify({
"title": "Classes",
"icon": "https://ssl.gstatic.com/classroom/favicon.png"
});
const google = () => localStorage.cloaker = JSON.stringify({
"title": "Google",
"icon": "https://www.google.com/favicon.ico"
});
document.getElementById("uvBackend").value = localStorage.uvBackend;
function updateBackend()
{
localStorage.uvBackend = document.getElementById("uvBackend").value;
}
</script>
</div>
<!--END EDITABLE HTML-->
<script src="/js/theme.js"></script>
<script src="/js/blanker.js"></script>
<script src="/js/all.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/crate@3" async="" defer="">
new Crate({
server: '950407933408198717', // Skool Community
channel: '1044626679638806631', // #uv-chat
notifications: false
})
</script>
</body>