-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
159 lines (128 loc) · 5.26 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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="UBG100">
<meta name="description" content="Play your favorite online games free now!">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<title>Settings</title>
<script async src="https://arc.io/widget.min.js#n2Wgjzok"></script>
<link rel="icon" type="image/x-icon" href="/assets/img/socials/ubg100.png">
<link rel="mask-icon" type="" href="/assets/img/socials/ubg100.png" color="#111">
<link id="maincss" rel="stylesheet" href="/main.css">
<link rel="stylesheet" href="/assets/css/tabcloak.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<noscript>Your browser doesn't have JavaScript enabled. Please enable JavaScript or switch to a browser that
supports it.</noscript>
<noscript>Your browser doesn't have JavaScript enabled. Please enable JavaScript or switch to a browser that
supports it.</noscript>
<style>
* {
box-sizing: revert;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Syne', sans-serif;
background-color: #000000;
}
.btn-animated {
-webkit-animation: moveInBottom 5s ease-out;
-webkit-animation-fill-mode: backwards;
animation: moveInBottom 5s ease-out;
animation-fill-mode: backwards
}
.themebuttons {
position: relative;
text-align: center;
}
</style>
</head>
<body data-ess="true">
<div class="hero">
<h1 class="hero-main">Settings</h1>
</div>
<div class="console-container">
<div class="console">
<h1>Tab Cloaker</h1>
<div class="consolebody">
<p>> Enter text below to change the title or an image URL to change the icon</p>
<p class="console-input">> <input id="userinput" type="text"
placeholder="Enter a valid title or image URL" autocomplete="off" autofocus=""></p>
<p>> Output: <span id="console-output"></span></p>
<div id="preview-container" class="preview-container"><img id="image-preview"></div>
</div>
</div>
<div class="button-wrapper">
<button onclick="changeTabTitle()" class="console-button">Set Title</button>
<button onclick="changeTabIcon()" class="console-button">Set Icon</button>
<button onclick="resetTabSettings()" class="console-button">Reset</button>
<div class="tabgroup">
<div class="tabchoice" onclick="setgoogle()"><img src="https://www.google.com/favicon.ico"></div>
<div class="tabchoice" onclick="setgoogled()"><img src="https://www.drive.google.com/favicon.ico"></div>
<div class="tabchoice" onclick="setedpuzzle()"><img src="https://edpuzzle.imgix.net/favicons/favicon-32.png"></div>
<div class="tabchoice" onclick="setzoom()"><img src="https://st1.zoom.us/zoom.ico"></div>
<div class="tabchoice" onclick="setcanvas()"><img src="https://du11hjcvx0uqb.cloudfront.net/favicon.ico"></div>
</div>
</div>
</div>
<div class="hero">
<h1 class="hero-main">Themes</h1>
</div>
<div class="themebuttons">
<button theme="default" id="button" class="tabtheme"
onclick="setapp('default');removeneon()">Default</button>
<button theme="neon" class="tabtheme" id="button"
onclick="setapp('neon');addneon();">Neon</button>
<button theme="blue" id="button" class="tabtheme"
onclick="setapp('blue');removeneon()">Blue</button>
</div>
<div class="hero">
<h1 class="hero-main">Background</h1>
</div>
<div class="themebuttons">
<button bg="default" id="button" class="tabbg"
onclick="setbg('default')">Default</button>
<button bg="none" id="button" class="tabbg"
onclick="setbg('none')">None</button>
<button bg="squares" id="button" class="tabbg"
onclick="setbg('squares')">Squares</button>
</div>
<div class="hero">
<h1 class="hero-main">Pr0xy Select</h1>
</div>
<div class="themebuttons">
<button class="tabp" p="emulatoros.up.railway.app" id="button" onclick="pselection('emulatoros.up.railway.app');">Default</button>
<button class="tabp" p="r.emulatoros.ga" id="button" onclick="pselection('r.emulatoros.ga');">r.emulatoros.ga</button>
<button class="tabp" p="87d083da-175b-4b4b-9d9f-1445af44773e.id.repl.co" id="button" onclick="pselection('87d083da-175b-4b4b-9d9f-1445af44773e.id.repl.co');">Replit Limk</button>
</div>
<div style="display:none;" class="footer__visits"><i class="fas fa-eye"></i><span id="visit-count">0</span></div>
<div id="particles-js"></div>
<div id="squares"></div>
<script>
function addneon() {
var cssElm = document.createElement('link');
cssElm.setAttribute('href', '/neon.css');
cssElm.setAttribute('rel', 'stylesheet');
cssElm.setAttribute('id', 'neoncss');
document.head.appendChild(cssElm);
}
function removeneon() {
if (document.getElementById('neoncss')) {
const link = document.getElementById('neoncss');
console.log(link)
link.remove()
console.log('remove' + 'link')
}
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="/main.js"></script>
<script src="/assets/js/settings.js"></script>
<script src="/particle.js"></script>
</body>
</html>