122 lines
5.7 KiB
HTML
Executable File
122 lines
5.7 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- initialize theme vars
|
|
https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff -->
|
|
|
|
<!-- initialize externals -->
|
|
<meta property="og:title" content="Selenite" />
|
|
<meta property="description" content="Selenite is the best unblocked games site. With over 400 games and an account system, no other websites come close to Selenite." />
|
|
<meta name="keywords" content="proxy, web proxy, unblock websites, unblock chromebook, free web proxy, proxy list, proxy sites, un block chromebook, online proxy, proxy server, proxysite, proxy youtube, bypass securly, bypass iboss, bypass lightspeed filter, chromebooks, unblock youtube, youtube proxy, unblocked youtube, youtube unblocked, unblock games, selenite, unblocked games, free games">
|
|
<meta content="/favicon.png" property="og:image" />
|
|
<meta content="#c77dff" data-react-helmet="true" name="theme-color" />
|
|
<meta name="googlebot" content="index, follow, snippet" />
|
|
<link rel="canonical" href="https://selenite.cc/" />
|
|
<meta property="og:description" content="Selenite is the best unblocked games site. With over 400 games and an account system, no other websites come close to Selenite." />
|
|
<meta property="og:title" content="Selenite">
|
|
<meta property="og:type" content="website">
|
|
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "Organization",
|
|
"name": "Selenite",
|
|
"alternateName": "selenite.cc",
|
|
"url": "https://selenite.cc",
|
|
"logo": "https://selenite.cc/favicon.png",
|
|
"sameAs": [
|
|
"https://github.com/selenite-cc",
|
|
"https://youtube.com/@selenitecc",
|
|
"https://tiktok.com/@selenitecc",
|
|
"https://selenite.cc",
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<!-- initialize my stuff -->
|
|
<script src="/js/all.min.js"></script>
|
|
<script src="/js/main.js"></script>
|
|
<!-- <script src="/js/widget.js"></script> -->
|
|
|
|
<link rel="stylesheet" href="/css/main.css" />
|
|
<link rel="stylesheet" href="/css/pages.css" />
|
|
<link rel="stylesheet" href="/css/settings.css" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<!-- seo + other things -->
|
|
<title>Selenite</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3415518411898563" crossorigin="anonymous"></script>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
document.querySelector(`option[value="${localStorage.getItem("selenite.theme") || ""}"]`).setAttribute("selected", "");
|
|
if(localStorage.getItem("selenite.fast-mode") == 'true') {
|
|
document.getElementById("fastMode").setAttribute("checked", "")
|
|
};
|
|
if(localStorage.getItem("selenite.super-fast-mode") == 'true') {
|
|
document.getElementById("superFastMode").setAttribute("checked", "")
|
|
};
|
|
document.getElementById("themes").addEventListener("input", (e)=>{
|
|
localStorage.setItem("selenite.theme", e.target.value);
|
|
document.body.setAttribute("theme", e.target.value);
|
|
})
|
|
document.getElementById("fastMode").addEventListener("click", (e) => {
|
|
localStorage.setItem("selenite.fast-mode", !(e.target.checked == false));
|
|
location.reload();
|
|
});
|
|
document.getElementById("superFastMode").addEventListener("click", (e) => {
|
|
localStorage.setItem("selenite.super-fast-mode", !(e.target.checked == false));
|
|
location.reload();
|
|
});
|
|
document.getElementById("submitCloak").addEventListener("click", (e) => {
|
|
localStorage.setItem("selenite.tab-cloak", JSON.stringify({
|
|
"name": document.getElementById("cloakName").value || "",
|
|
"icon": document.getElementById("cloakIcon").value || ""
|
|
}));
|
|
});
|
|
document.getElementById("submitPanic").addEventListener("click", (e) => {
|
|
localStorage.setItem("selenite.panic-mode", JSON.stringify({
|
|
"key": document.getElementById("panicKey").value || "",
|
|
"url": document.getElementById("panicURL").value || ""
|
|
}));
|
|
})
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 class="title">settings</h1>
|
|
<sections>
|
|
<section>
|
|
<h2>theme</h2>
|
|
<select id="themes">
|
|
<option value="">selenite</option>
|
|
<option value="blackandwhite">black and white</option>
|
|
<option value="grass">grass</option>
|
|
<option value="evil">evil</option>
|
|
<option value="sky">sky</option>
|
|
</select>
|
|
</section>
|
|
<section>
|
|
<h2>toggles</h2>
|
|
<div class="samerow"><input type="checkbox" id="fastMode"><label for="fastMode" title="disables particles, animated background, & other misc effects">fast mode</label></div>
|
|
<div class="samerow"><input type="checkbox" id="superFastMode"><label for="superFastMode" title="disables all blurs and transparency">super fast mode</label></div>
|
|
</section>
|
|
<section>
|
|
<h2>tab cloak</h2>
|
|
<p>website name</p>
|
|
<input type="text" id="cloakName">
|
|
<p>website icon</p>
|
|
<input type="text" id="cloakIcon">
|
|
<button id="submitCloak">set tab cloak</button>
|
|
</section>
|
|
<section>
|
|
<h2>panic mode</h2>
|
|
<p title="the key you need to click to automatically exit selenite">key</p>
|
|
<input type="text" id="panicKey" maxlength="1">
|
|
<p title="the url itll direct you to">website</p>
|
|
<input type="text" id="panicURL">
|
|
<button id="submitPanic">set panic mode</button>
|
|
</section>
|
|
</sections>
|
|
</body>
|
|
</html>
|