mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
Compare commits
4 commits
36f44bae25
...
76b98b3538
Author | SHA1 | Date | |
---|---|---|---|
![]() |
76b98b3538 | ||
![]() |
8db6ea3ea2 | ||
![]() |
3370f9e583 | ||
![]() |
513fa17525 |
63 changed files with 10965 additions and 3108 deletions
|
@ -3,68 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<title>MilkNet | Apps</title>
|
<title>MilkNet | Apps</title>
|
||||||
<link rel="icon" type="image/png" href="/assets/img/milk.png"/>
|
<link rel="icon" type="image/png" href="/assets/img/milk.png"/>
|
||||||
<style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style>
|
<link rel="stylesheet" href="/style.css">
|
||||||
<style>
|
<script src="/index.js"></script>
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
.center-text {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
|
@ -74,6 +14,11 @@
|
||||||
<p class="center-text">Apps | More soon...</p>
|
<p class="center-text">Apps | More soon...</p>
|
||||||
<a href="/browse">Proxy</a> • <a href="/chat">Chat (Matrix hosted by whatware.net)</a> • <a href="/irc">Chat (IRC hosted by telepath.im)</a> • <a href="/gamja">Gamja (Alt client for IRC)</a> • <a href="/apps/calculator">Calculator</a> • <a href="/library">Library (WIP)</a> • <a href="/webamp.txt">Music player (Webamp)</a>
|
<a href="/browse">Proxy</a> • <a href="/chat">Chat (Matrix hosted by whatware.net)</a> • <a href="/irc">Chat (IRC hosted by telepath.im)</a> • <a href="/gamja">Gamja (Alt client for IRC)</a> • <a href="/apps/calculator">Calculator</a> • <a href="/library">Library (WIP)</a> • <a href="/webamp.txt">Music player (Webamp)</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="/"><img src="/assets/img/88x31.png" loading="lazy" width="88" height="31"></a>
|
||||||
|
<a href="/"><img src="/assets/img/88x31_light.png" loading="lazy" width="88" height="31"></a>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>2048</title>
|
<title>2048</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/2048"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/2048" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,57 +1,16 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<title>5B | Takes a bit to load | HTML5 port by zelo.dev</title>
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>BFDIA 5b | Takes a bit to load</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/5b"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/5b" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>A Dance of Fire and Ice</title>
|
<title>A Dance of Fire and Ice</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/adanceoffireandice"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/adanceoffireandice" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -5,6 +5,7 @@
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Infiltrating the Airship</title>
|
<title>Infiltrating the Airship</title>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
|
<script src="index.js"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -13,57 +14,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Baldi's Basics In Edgucation and Mewing</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Baldi's Basics in Edgucation and Mewing</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/baldis-basics/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/baldis-basics/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -3,8 +3,9 @@
|
||||||
<head>
|
<head>
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Fleeing the Complex</title>
|
<title>Breaking the Bank</title>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
|
<script src="/index.js"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -13,57 +14,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Basket Random</title>
|
<title>Basket Random</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/cookie-clicker"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/basketrandom" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>BitLife</title>
|
<title>BitLife</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/bitlife"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/bitlife" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Cluster Rush</title>
|
<title>Cluster Rush</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/cookie-clicker"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/cluster-rush" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -4,7 +4,9 @@
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Fleeing the Complex</title>
|
<title>Fleeing the Complex</title>
|
||||||
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
|
<script src="/index.js"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -13,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Cookie Clicker</title>
|
<title>Cookie Clicker</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/cookie-clicker"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/cookie-clicker" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Crossy Road</title>
|
<title>Crossy Road</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/crossy-road"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/crossy-road" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -4,6 +4,8 @@
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Stealing the Diamond</title>
|
<title>Stealing the Diamond</title>
|
||||||
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
@ -13,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Death Run 3D</title>
|
<title>Death Run 3D</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/cookie-clicker"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/death-run-3d" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Drive Mad</title>
|
<title>Drive Mad</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/drive-mad/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/drive-mad/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Flappy Bird</title>
|
<title>Flappy Bird</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/flappybird"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/flappybird" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>FNAF2</title>
|
<title>FNAF2</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/fnaf/fnaf2/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/fnaf/fnaf2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>FNAF3</title>
|
<title>FNAF3</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/fnaf/fnaf3/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/fnaf/fnaf3/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,38 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>FNAF4</title>
|
<title>FNAF4</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/fnaf/fnaf4/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener('keydown', function(event) {
|
|
||||||
if (event.key === '.') {
|
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
|
||||||
if (!link) {
|
|
||||||
link = document.createElement('link');
|
|
||||||
link.rel = 'icon';
|
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
|
||||||
}
|
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/fnaf/fnaf4/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>FNAF</title>
|
<title>FNAF</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/fnaf/fnaf1/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/fnaf/fnaf1/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Friday Night Funkin</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FNF</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/fridaynightfunkin/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/fridaynightfunkin/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Fruit Ninja</title>
|
<title>Fruit Ninja</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/fruitninja/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/fruitninja/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Jetpack Joyride</title>
|
<title>Jetpack Joyride</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/jetpackjoyride/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/jetpackjoyride/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Monkey Mart</title>
|
<title>Monkey Mart</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/monkey-mart/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/monkey-mart/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Moto X3M 2</title>
|
<title>Moto X3M 2</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/motox3m2/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Moto X3M Pool Party</title>
|
<title>Moto X3M Pool Party</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/motox3m-pool/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-pool/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Moto X3M Winter</title>
|
<title>Moto X3M Winter</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/motox3m-winter/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-winter/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Moto X3M Winter</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Moto X3M Pool Party</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/motox3m-spooky/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-spooky/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Moto X3M</title>
|
<title>Moto X3M</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/motox3m/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
<title>OvO</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Moto X3M Pool Party</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/ovo"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/ovo" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -5,6 +5,7 @@
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Papa's Burgeria</title>
|
<title>Papa's Burgeria</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Papa's Freezeria</title>
|
<title>Papa's Freezeria</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Papa's Pizzeria</title>
|
<title>Papa's Pizzeria</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Papa's Pancakeria</title>
|
<title>Papa's Pancakeria</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Papa's Pastaria</title>
|
<title>Papa's Pastaria</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
<head>
|
<head>
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Papa's Pizzeria</title>
|
<title>Papa's Sushiria</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Paper.io 2</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Paper.io 2</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/paperio2/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/paperio2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -4,7 +4,9 @@
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Escaping the Prison</title>
|
<title>Escaping the Prison</title>
|
||||||
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
|
<script src="/index.js"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -13,57 +15,6 @@
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Retro Bowl</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Retro Bowl</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/retrobowl"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/retrobowl" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Slope</title>
|
<title>Slope</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/slope"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/slope" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Slope 2</title>
|
<title>Slope 2</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/slope-2/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/slope-2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Super Mario 64</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Super Mario 64</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/supermario64/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/supermario64/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Smash Karts</title>
|
<title>Smash Karts</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/smash-karts"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/smash-karts" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Stickman Hook</title>
|
<title>Stickman Hook</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/stickman"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/stickman" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Subway Surfers</title>
|
<title>Subway Surfers</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/reider/storage/gxmes/subway-surfers-normal/index.html"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/subway-surfers-normal/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +0,0 @@
|
||||||
<title>Tetris</title>
|
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="https://www.lumpty.com/amusements/Games/Tetris/tetris.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Tomb of the Mask</title>
|
<title>Tomb of the Mask</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/totm"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/totm" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<title>Tunnel Rush</title>
|
<title>Tunnel Rush</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tunnel-rush"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tunnel-rush" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -3,68 +3,12 @@
|
||||||
<head>
|
<head>
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Stealing the Diamond</title>
|
<title>World's Hardest Game</title>
|
||||||
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<!--Google Analytics-->
|
<!--Google Analytics-->
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>World's Hardest Game 2</title>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Moto X3M Pool Party</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
</head>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<body>
|
||||||
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
document.addEventListener("keydown", function(event) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (event.key === ",") {
|
frameborder="0" allowfullscreen=""
|
||||||
if (!savedLink) {
|
src="/tylerpalko/worldshardestgame2"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/worldshardestgame2" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
</iframe>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,56 +0,0 @@
|
||||||
<title>Wordle</title>
|
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/wordle/index.html#infinite" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
||||||
</iframe>
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<title>Requests | MilkNet</title>
|
<title>Requests | MilkNet</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="https://tally.so/r/wLvNGv" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="https://tally.so/r/wLvNGv" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
</iframe>
|
</iframe>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -3,68 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<title>MilkNet | Games</title>
|
<title>MilkNet | Games</title>
|
||||||
<link rel="icon" type="image/png" href="/assets/img/milk.png"/>
|
<link rel="icon" type="image/png" href="/assets/img/milk.png"/>
|
||||||
<style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style>
|
<link rel="stylesheet" href="/style.css">
|
||||||
<style>
|
<script src="/index.js"></script>
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
.center-text {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
|
@ -73,6 +13,12 @@
|
||||||
<div class="center-text">
|
<div class="center-text">
|
||||||
<p class="center-text">Games (press , to escape)</p>
|
<p class="center-text">Games (press , to escape)</p>
|
||||||
<a href="/assets/games/smashkarts">Smash Karts</a> • <a href="/assets/games/stickmanhook">Stickman Hook</a> • <a href="/assets/games/slope">Slope</a> • <a href="/assets/games/slope2">Slope 2</a> • <a href="/assets/games/adofai">A Dance of Fire and Ice</a> • <a href="/assets/games/retrobowl">Retro Bowl</a> • <a href="/assets/games/totm">Tomb of the Mask</a> • <a href="/assets/games/whg">World's Hardest Game</a> • <a href="/assets/games/whg2">World's Hardest Game 2</a> • <a href="/assets/games/ovo">OvO</a> • <a href="/assets/games/2048">2048</a> • <a href="/assets/games/tunnelrush">Tunnel Rush</a> • <a href="/assets/games/basketrandom">Basket Random</a> • <a href="/assets/games/clusterrush">Cluster Rush</a> • <a href="/assets/games/bitlife">BitLife</a> • <a href="/assets/games/cookieclicker">Cookie Clicker</a> • <a href="/assets/games/dr3d">Death Run 3D</a> • <a href="/assets/games/flappybird">Flappy Bird</a> • <a href="/assets/games/eagler/1.5.2.html">Eaglercraft 1.5.2</a> • <a href="/resent/javascript">Eaglercraft 1.5.2 (Resent)</a> • <a href="/precision/eagler-files/1.5.2/precisionbeta2">Eaglercraft 1.5.2 (Precision)</a> • <a href="/assets/games/eagler/1.8.html">Eaglercraft 1.8</a> • <a href="/assets/games/eagler/1.12.html">Eaglercraft 1.12</a> • <a href="/assets/games/fruitninja">Fruit Ninja</a> • <a href="/assets/games/drivemad">Drive Mad</a> • <a href="/assets/games/jetpackjoyride">Jetpack Joyride</a> • <a href="/assets/games/tetris">Tetris</a> • <a href="/assets/games/subwaysurfers">Subway Surfers</a> • <a href="/assets/games/prison">Henry Stickmin: Escaping the Prison</a> • <a href="/assets/games/bank">Henry Stickmin: Breaking the Bank</a> • <a href="/assets/games/airship">Henry Stickmin: Infiltrating the Airship</a> • <a href="/assets/games/complex">Henry Stickmin: Fleeing the Complex</a> • <a href="/assets/games/diamond">Henry Stickmin: Stealing the Diamond</a> • <a href="/assets/games/paperio2">Paper.io 2</a> • <a href="/assets/games/fnf">Friday Night Funkin</a> • <a href="/assets/games/baldisbasics">Baldi's Basics</a> • <a href="/assets/games/monkeymart">Monkey Mart</a> • <a href="/assets/games/fnaf/">FNAF</a> • <a href="/assets/games/fnaf/2">FNAF2</a> • <a href="/assets/games/fnaf/3">FNAF3</a> • <a href="/assets/games/fnaf/4">FNAF4</a> • <a href="/assets/games/motox3m">Moto X3M</a> • <a href="/assets/games/motox3m/2">Moto X3M 2</a> • <a href="/assets/games/motox3m/3">Moto X3M Pool Party</a> • <a href="/assets/games/motox3m/4">Moto X3M Winter</a> • <a href="/assets/games/motox3m/5">Moto X3M Spooky Land</a> • <a href="/assets/games/papas">Papa's Pizzeria</a> • <a href="/assets/games/papas/burgeria">Papa's Burgeria</a> • <a href="/assets/games/papas/pancakeria">Papa's Pancakeria</a> • <a href="/assets/papas/sushiria">Papa's Sushiria</a> • <a href="/assets/games/papas/freezeria">Papa's Freezeria</a> • <a href="/assets/games/papas/pastaria">Papa's Pastaria</a> • <a href="/assets/games/5b">BFDIA 5b</a>
|
<a href="/assets/games/smashkarts">Smash Karts</a> • <a href="/assets/games/stickmanhook">Stickman Hook</a> • <a href="/assets/games/slope">Slope</a> • <a href="/assets/games/slope2">Slope 2</a> • <a href="/assets/games/adofai">A Dance of Fire and Ice</a> • <a href="/assets/games/retrobowl">Retro Bowl</a> • <a href="/assets/games/totm">Tomb of the Mask</a> • <a href="/assets/games/whg">World's Hardest Game</a> • <a href="/assets/games/whg2">World's Hardest Game 2</a> • <a href="/assets/games/ovo">OvO</a> • <a href="/assets/games/2048">2048</a> • <a href="/assets/games/tunnelrush">Tunnel Rush</a> • <a href="/assets/games/basketrandom">Basket Random</a> • <a href="/assets/games/clusterrush">Cluster Rush</a> • <a href="/assets/games/bitlife">BitLife</a> • <a href="/assets/games/cookieclicker">Cookie Clicker</a> • <a href="/assets/games/dr3d">Death Run 3D</a> • <a href="/assets/games/flappybird">Flappy Bird</a> • <a href="/assets/games/eagler/1.5.2.html">Eaglercraft 1.5.2</a> • <a href="/resent/javascript">Eaglercraft 1.5.2 (Resent)</a> • <a href="/precision/eagler-files/1.5.2/precisionbeta2">Eaglercraft 1.5.2 (Precision)</a> • <a href="/assets/games/eagler/1.8.html">Eaglercraft 1.8</a> • <a href="/assets/games/eagler/1.12.html">Eaglercraft 1.12</a> • <a href="/assets/games/fruitninja">Fruit Ninja</a> • <a href="/assets/games/drivemad">Drive Mad</a> • <a href="/assets/games/jetpackjoyride">Jetpack Joyride</a> • <a href="/assets/games/tetris">Tetris</a> • <a href="/assets/games/subwaysurfers">Subway Surfers</a> • <a href="/assets/games/prison">Henry Stickmin: Escaping the Prison</a> • <a href="/assets/games/bank">Henry Stickmin: Breaking the Bank</a> • <a href="/assets/games/airship">Henry Stickmin: Infiltrating the Airship</a> • <a href="/assets/games/complex">Henry Stickmin: Fleeing the Complex</a> • <a href="/assets/games/diamond">Henry Stickmin: Stealing the Diamond</a> • <a href="/assets/games/paperio2">Paper.io 2</a> • <a href="/assets/games/fnf">Friday Night Funkin</a> • <a href="/assets/games/baldisbasics">Baldi's Basics</a> • <a href="/assets/games/monkeymart">Monkey Mart</a> • <a href="/assets/games/fnaf/">FNAF</a> • <a href="/assets/games/fnaf/2">FNAF2</a> • <a href="/assets/games/fnaf/3">FNAF3</a> • <a href="/assets/games/fnaf/4">FNAF4</a> • <a href="/assets/games/motox3m">Moto X3M</a> • <a href="/assets/games/motox3m/2">Moto X3M 2</a> • <a href="/assets/games/motox3m/3">Moto X3M Pool Party</a> • <a href="/assets/games/motox3m/4">Moto X3M Winter</a> • <a href="/assets/games/motox3m/5">Moto X3M Spooky Land</a> • <a href="/assets/games/papas">Papa's Pizzeria</a> • <a href="/assets/games/papas/burgeria">Papa's Burgeria</a> • <a href="/assets/games/papas/pancakeria">Papa's Pancakeria</a> • <a href="/assets/papas/sushiria">Papa's Sushiria</a> • <a href="/assets/games/papas/freezeria">Papa's Freezeria</a> • <a href="/assets/games/papas/pastaria">Papa's Pastaria</a> • <a href="/assets/games/5b">BFDIA 5b</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="/"><img src="/assets/img/88x31.png" loading="lazy" width="88" height="31"></a>
|
||||||
|
<a href="/"><img src="/assets/img/88x31_light.png" loading="lazy" width="88" height="31"></a>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</head>
|
</head>
|
56
index.html
56
index.html
|
@ -3,58 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<title>MilkNet</title>
|
<title>MilkNet</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="/style.css">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
|
@ -66,7 +16,7 @@
|
||||||
<a href="/apps">Apps</a> •
|
<a href="/apps">Apps</a> •
|
||||||
<a href="/links.txt">Links</a> •
|
<a href="/links.txt">Links</a> •
|
||||||
<a href="/form">Contact</a> •
|
<a href="/form">Contact</a> •
|
||||||
<a href="/gba">Retro Games</a> •
|
<a href="/gba">GBA Games</a> •
|
||||||
<a href="/tools">Settings & tools</a>
|
<a href="/tools">Settings & tools</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
48
index.js
Normal file
48
index.js
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
|
let savedLink = localStorage.getItem("savedLink");
|
||||||
|
|
||||||
|
document.addEventListener("keydown", function(event) {
|
||||||
|
if (event.key === ",") {
|
||||||
|
if (!savedLink) {
|
||||||
|
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
||||||
|
if (savedLink) {
|
||||||
|
localStorage.setItem("savedLink", savedLink);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
window.open(savedLink, "_blank");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener("keydown", function (event) {
|
||||||
|
if (event.key === ".") {
|
||||||
|
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
|
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
||||||
|
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
||||||
|
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
||||||
|
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
||||||
|
};
|
||||||
|
|
||||||
|
if (options[choice]) {
|
||||||
|
document.title = options[choice].title;
|
||||||
|
changeFavicon(options[choice].icon);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
10273
library/1984.txt
Normal file
10273
library/1984.txt
Normal file
File diff suppressed because it is too large
Load diff
|
@ -5,57 +5,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>MilkNet | Library</title>
|
<title>MilkNet | Library</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<script>
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
|
|
BIN
stuff/fun.mp4
BIN
stuff/fun.mp4
Binary file not shown.
|
@ -1,71 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>MilkNet</title>
|
|
||||||
<link rel="icon" type="image/png" href="/assets/img/milk.png"/>
|
|
||||||
<style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style>
|
|
||||||
<style>
|
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
.center-text {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="https://voxel.fsky.io/badges/virusalert.gif" class="center" title="Virus Alert! Click Here" onclick="goFullscreenAndPlay()" width="88" height="31">
|
|
||||||
<video id="videoPlayer" style="display: none;" width="100%" height="100%">
|
|
||||||
<source src="fun.mp4" type="video/mp4">
|
|
||||||
</video>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
function goFullscreenAndPlay() {
|
|
||||||
let video = document.getElementById("videoPlayer");
|
|
||||||
video.style.display = "block";
|
|
||||||
|
|
||||||
if (video.requestFullscreen) {
|
|
||||||
video.requestFullscreen();
|
|
||||||
} else if (video.mozRequestFullScreen) {
|
|
||||||
video.mozRequestFullScreen();
|
|
||||||
} else if (video.webkitRequestFullscreen) {
|
|
||||||
video.webkitRequestFullscreen();
|
|
||||||
} else if (video.msRequestFullscreen) {
|
|
||||||
video.msRequestFullscreen();
|
|
||||||
}
|
|
||||||
|
|
||||||
video.play();
|
|
||||||
|
|
||||||
document.addEventListener("fullscreenchange", exitHandler);
|
|
||||||
document.addEventListener("webkitfullscreenchange", exitHandler);
|
|
||||||
document.addEventListener("mozfullscreenchange", exitHandler);
|
|
||||||
document.addEventListener("MSFullscreenChange", exitHandler);
|
|
||||||
}
|
|
||||||
|
|
||||||
function exitHandler() {
|
|
||||||
if (!document.fullscreenElement &&
|
|
||||||
!document.webkitFullscreenElement &&
|
|
||||||
!document.mozFullScreenElement &&
|
|
||||||
!document.msFullscreenElement) {
|
|
||||||
|
|
||||||
let video = document.getElementById("videoPlayer");
|
|
||||||
video.pause();
|
|
||||||
video.style.display = "none";
|
|
||||||
|
|
||||||
document.removeEventListener("fullscreenchange", exitHandler);
|
|
||||||
document.removeEventListener("webkitfullscreenchange", exitHandler);
|
|
||||||
document.removeEventListener("mozfullscreenchange", exitHandler);
|
|
||||||
document.removeEventListener("MSFullscreenChange", exitHandler);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<h1 class="center-text">Click me ;)</h1>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
</head>
|
|
|
@ -3,80 +3,23 @@
|
||||||
<head>
|
<head>
|
||||||
<title>MilkNet | Settings & tools</title>
|
<title>MilkNet | Settings & tools</title>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
<style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style>
|
<link rel="stylesheet" href="/style.css">
|
||||||
<style>
|
<script src="/index.js"></script>
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
.center-text {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener("keydown", function (event) {
|
|
||||||
if (event.key === ".") {
|
|
||||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
|
||||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
|
||||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
|
||||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
|
||||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
|
||||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
|
||||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
|
||||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
|
||||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
|
||||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
|
||||||
};
|
|
||||||
|
|
||||||
if (options[choice]) {
|
|
||||||
document.title = options[choice].title;
|
|
||||||
changeFavicon(options[choice].icon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeFavicon(src) {
|
|
||||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
|
||||||
link.type = "image/x-icon";
|
|
||||||
link.rel = "shortcut icon";
|
|
||||||
link.href = src;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
<h1 class="center-text">MilkNet</h1>
|
<h1 class="center-text">MilkNet</h1>
|
||||||
<p class="center-text">Settings & tools | These work on all games and pages. Test them here</p>
|
<p class="center-text">Settings & tools | These work on all games and pages (except Eaglercraft). Test them here</p>
|
||||||
<p class="center-text">(except Eaglercraft)</p>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="center-text">
|
<div class="center-text">
|
||||||
<p>. - Cloak key (Odd bug I can't figure out, might need to spam it as soon as you open some games)</p> • <p>, - Panic key (Opens link of your choice)</p>
|
<p>. - Cloak key (Odd bug on some pages I can't figure out, might need to spam it as soon as you open)</p>
|
||||||
|
<p>, - Panic key (Opens link of your choice)</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="/"><img src="/assets/img/88x31.png" loading="lazy" width="88" height="31"></a>
|
||||||
|
<a href="/"><img src="/assets/img/88x31_light.png" loading="lazy" width="88" height="31"></a>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Add table
Reference in a new issue