whatbere i want

This commit is contained in:
Kalibara4
2026-06-16 23:59:17 -04:00
parent 0605271327
commit 5ef870709f
3 changed files with 348 additions and 335 deletions

View File

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<!-- initialize theme vars <!-- initialize theme vars
https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff --> https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff -->
@ -40,15 +41,21 @@
</style> </style>
</head> </head>
<alerts> </alerts> <alerts> </alerts>
<body> <body>
<h1 class="title">dmca</h1> <h1 class="title">dmca</h1>
<p>if you believe that any of the content on selenite infringes on your copyright or you are authorized to act on behalf of someone who you believe their copyright has been infringed upon, please submit a notice of copyright infringement to our dmca email with the following:</p> <p>if you believe that any of the content on selenite infringes on your copyright or you are authorized to act on
<p>your electronic or physical signature, confirming you are the copyright owner or authorized to act on their behalf</p> behalf of someone who you believe their copyright has been infringed upon, please submit a notice of copyright
infringement to our dmca email with the following:</p>
<p>your electronic or physical signature, confirming you are the copyright owner or authorized to act on their
behalf</p>
<p>contact information, including your full name, address, and phone number.</p> <p>contact information, including your full name, address, and phone number.</p>
<p>the content you believe is being infringed upon (title, url, etc.)</p> <p>the content you believe is being infringed upon (title, url, etc.)</p>
<p>a statement that you have a good faith belief that the use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law</p> <p>a statement that you have a good faith belief that the use of the material in the manner complained of is not
<p>the content that the information in the notification is accurate, and under penalty of perjury, that you are authorized to act on behalf of the copyright owner</p> authorized by the copyright owner, its agent, or the law</p>
<p>the content that the information in the notification is accurate, and under penalty of perjury, that you are
authorized to act on behalf of the copyright owner</p>
<p>you may send this to dmca@selenite.cc</p> <p>you may send this to dmca@selenite.cc</p>
<p>upon recieving the takedown notification and confirming that the information provided is valid, we will take down all content we believe appropriate</p>
</body> </body>
</html> </html>

View File

@ -17,7 +17,7 @@ function getHiddenGames() {
} }
async function loadGames() { async function loadGames() {
if (type == "g") pageData = { path: "/resources/games-tagged.json", prefix: "semag", type: "g" }; if (type == "g") pageData = { path: "/resources/games.json", prefix: "semag", type: "g" };
else if (type == "a") pageData = { path: "/resources/apps.json", prefix: "sppa", type: "a" }; else if (type == "a") pageData = { path: "/resources/apps.json", prefix: "sppa", type: "a" };
else { sAlert("this is not valid"); return; } else { sAlert("this is not valid"); return; }

View File

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<!-- initialize theme vars <!-- initialize theme vars
https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff --> https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff -->
@ -209,7 +210,7 @@
const searchInput = document.getElementById("hiddenGamesSearch"); const searchInput = document.getElementById("hiddenGamesSearch");
let games = []; let games = [];
try { try {
games = await (await fetch("/resources/games-tagged.json")).json(); games = await (await fetch("/resources/games.json")).json();
} catch { } catch {
document.getElementById("hiddenGamesList").innerHTML = "<p>failed to load games list</p>"; document.getElementById("hiddenGamesList").innerHTML = "<p>failed to load games list</p>";
return; return;
@ -279,6 +280,7 @@
} }
</script> </script>
</head> </head>
<body> <body>
<h1 class="title">settings</h1> <h1 class="title">settings</h1>
<sections> <sections>
@ -296,9 +298,12 @@
</select> </select>
<input type="color" id="colorPicker" style="display: none"> <input type="color" id="colorPicker" style="display: none">
<p style="font-size:20px;margin:6px;">toggles</p> <p style="font-size:20px;margin:6px;">toggles</p>
<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="fastMode"><label for="fastMode"
<div class="samerow"><input type="checkbox" id="superFastMode"><label for="superFastMode" title="disables all blurs and transparency">super fast mode</label></div> title="disables particles, animated background, & other misc effects">fast mode</label></div>
<div class="samerow"><input type="checkbox" id="topGamesToggle"><label for="topGamesToggle">disable top games</label></div> <div class="samerow"><input type="checkbox" id="superFastMode"><label for="superFastMode"
title="disables all blurs and transparency">super fast mode</label></div>
<div class="samerow"><input type="checkbox" id="topGamesToggle"><label for="topGamesToggle">disable top
games</label></div>
</section> </section>
<section> <section>
<h2>tab cloak</h2> <h2>tab cloak</h2>
@ -342,4 +347,5 @@
</section> </section>
</sections> </sections>
</body> </body>
</html> </html>