mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
r
This commit is contained in:
parent
513fa17525
commit
3370f9e583
27 changed files with 375 additions and 1476 deletions
|
@ -1,56 +1,16 @@
|
||||||
<title>2048</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>2048</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,57 +1,16 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<title>5B | Takes a bit to load | HTML5 port by zelo.dev</title>
|
<html lang="en">
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<head>
|
||||||
<script>
|
<title>BFDIA 5b | Takes a bit to load</title>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<script src="/index.js"></script>
|
||||||
|
</head>
|
||||||
document.addEventListener("keydown", function(event) {
|
<body>
|
||||||
if (event.key === ",") {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
if (!savedLink) {
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
frameborder="0" allowfullscreen=""
|
||||||
if (savedLink) {
|
src="/5b"
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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>
|
||||||
} else {
|
</body>
|
||||||
window.open(savedLink, "_blank");
|
</html>
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>A Dance of Fire and Ice</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>A Dance of Fire and Ice</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -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>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
</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>Baldi's Basics In Edgucation and Mewing</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Baldi's Basics in Edgucation and Mewing</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -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>
|
||||||
|
@ -14,57 +15,6 @@
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
</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>Basket Random</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Basket Random</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>BitLife</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>BitLife</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Cluster Rush</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Cluster Rush</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -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>
|
||||||
|
@ -14,57 +16,6 @@
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
</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>Cookie Clicker</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Cookie Clicker</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Crossy Road</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Crossy Road</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -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>
|
||||||
|
@ -14,57 +16,6 @@
|
||||||
|
|
||||||
gtag('config', 'G-M9KJ1XPKLF');
|
gtag('config', 'G-M9KJ1XPKLF');
|
||||||
</script>
|
</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>Death Run 3D</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Death Run 3D</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Drive Mad</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Drive Mad</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
||||||
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Flappy Bird</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Flappy Bird</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>FNAF2</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>FNAF2</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>FNAF3</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>FNAF3</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,38 +1,16 @@
|
||||||
<title>FNAF4</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>FNAF4</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>FNAF</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>FNAF</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Friday Night Funkin</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>FNF</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Fruit Ninja</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Fruit Ninja</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Jetpack Joyride</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Jetpack Joyride</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Monkey Mart</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Monkey Mart</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Moto X3M 2</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Moto X3M 2</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Moto X3M Pool Party</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Moto X3M Pool Party</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
|
@ -1,56 +1,16 @@
|
||||||
<title>Moto X3M</title>
|
<!DOCTYPE html>
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
<html lang="en">
|
||||||
<script>
|
<head>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
<title>Moto X3M</title>
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||||
|
<script src="/index.js"></script>
|
||||||
document.addEventListener("keydown", function(event) {
|
</head>
|
||||||
if (event.key === ",") {
|
<body>
|
||||||
if (!savedLink) {
|
<iframe id="innerFrame" name="innerFrame"
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads"
|
||||||
if (savedLink) {
|
frameborder="0" allowfullscreen=""
|
||||||
localStorage.setItem("savedLink", savedLink);
|
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;">
|
||||||
} else {
|
</iframe>
|
||||||
window.open(savedLink, "_blank");
|
</body>
|
||||||
}
|
</html>
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</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>
|
|
Loading…
Add table
Reference in a new issue