Compare commits
17 commits
1176293176
...
cdcff19cb2
Author | SHA1 | Date | |
---|---|---|---|
![]() |
cdcff19cb2 | ||
![]() |
a6b420f1fa | ||
![]() |
af2ed32e2b | ||
![]() |
4a7f1accf3 | ||
![]() |
5bcb70879e | ||
![]() |
9bed70885b | ||
![]() |
6c5dc90df4 | ||
74e4d9abc9 | |||
![]() |
f46c9811e3 | ||
aa1f9c7046 | |||
![]() |
2fe4af239b | ||
![]() |
582f8293e1 | ||
![]() |
ba08c4acc4 | ||
![]() |
e2e59844bd | ||
![]() |
4aa19b40bd | ||
5c7969a390 | |||
![]() |
ac945c3e63 |
|
@ -32,21 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
}
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Stealing the Diamond</title>
|
<title>Fleeing the Complex</title>
|
||||||
<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>
|
||||||
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
<title>Knife Hit</title>
|
|
||||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
|
||||||
|
|
||||||
<script>
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
let savedLink = localStorage.getItem("savedLink");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", function(event) {
|
|
||||||
if (event.key === ",") {
|
|
||||||
if (!savedLink) {
|
|
||||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
||||||
if (savedLink) {
|
|
||||||
localStorage.setItem("savedLink", savedLink);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
window.open(savedLink, "_blank");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener('keydown', function(event) {
|
|
||||||
if (event.key === '.') {
|
|
||||||
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="https://ultimateknifesmash.h5games.usercontent.goog/v/22e8fb4e-2964-47f4-ba01-11a477502748/?amp;features=DevSdk__enable_v2_auto_interstitials,InterstitialFreqCap__freq_cap_60s&gameCenterId=gamesnacks&liftStorage=true&userActivityMetrics=true&origin=https://gamesnacks.com#pc=3673237693023156&audioUpdateOnSubscribe=true" 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>
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-winter/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-winter/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-spooky/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/motox3m-spooky/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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 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;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/ovo" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/ovo" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
@ -66,7 +82,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<object data="https://milk.servemp3.com/reider/storage/gxmes/papasfreezeria/papasfreezeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
<object data="/reider/storage/gxmes/papasfreezeria/papasfreezeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||||
<param name="allowScriptAccess" value="always">
|
<param name="allowScriptAccess" value="always">
|
||||||
<param name="allowFullScreen" value="true">
|
<param name="allowFullScreen" value="true">
|
||||||
</object>
|
</object>
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<object data="https://milk.servemp3.com/reider/storage/gxmes/papaspizzeria/papaspizzeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
<object data="/reider/storage/gxmes/papaspizzeria/papaspizzeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||||
<param name="allowScriptAccess" value="always">
|
<param name="allowScriptAccess" value="always">
|
||||||
<param name="allowFullScreen" value="true">
|
<param name="allowFullScreen" value="true">
|
||||||
</object>
|
</object>
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
@ -66,7 +82,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<object data="https://milk.servemp3.com/reider/storage/gxmes/papaspancakeria/papaspancakeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
<object data="/reider/storage/gxmes/papaspancakeria/papaspancakeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||||
<param name="allowScriptAccess" value="always">
|
<param name="allowScriptAccess" value="always">
|
||||||
<param name="allowFullScreen" value="true">
|
<param name="allowFullScreen" value="true">
|
||||||
</object>
|
</object>
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
@ -66,7 +82,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<object data="https://milk.servemp3.com/reider/storage/gxmes/papaspastaria/papaspastaria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
<object data="/reider/storage/gxmes/papaspastaria/papaspastaria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||||
<param name="allowScriptAccess" value="always">
|
<param name="allowScriptAccess" value="always">
|
||||||
<param name="allowFullScreen" value="true">
|
<param name="allowFullScreen" value="true">
|
||||||
</object>
|
</object>
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
@ -66,7 +82,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<object data="https://milk.servemp3.com/reider/storage/gxmes/papassushiria/papassushiria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
<object data="/reider/storage/gxmes/papassushiria/papassushiria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||||
<param name="allowScriptAccess" value="always">
|
<param name="allowScriptAccess" value="always">
|
||||||
<param name="allowFullScreen" value="true">
|
<param name="allowFullScreen" value="true">
|
||||||
</object>
|
</object>
|
||||||
|
|
|
@ -19,21 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/paperio2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/paperio2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Stealing the Diamond</title>
|
<title>Escaping the Prison</title>
|
||||||
<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>
|
||||||
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/retrobowl" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/retrobowl" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/slope" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/slope" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/slope-2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/slope-2/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/supermario64/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/supermario64/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/smash-karts" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/smash-karts" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/stickman" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/stickman" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/subway-surfers-normal/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/subway-surfers-normal/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="https://www.lumpty.com/amusements/Games/Tetris/tetris.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="https://www.lumpty.com/amusements/Games/Tetris/tetris.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/totm" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/totm" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tunnel-rush" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tunnel-rush" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -32,23 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
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 {
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/worldshardestgame2" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/tylerpalko/worldshardestgame2" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
|
@ -19,19 +19,37 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
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);
|
||||||
}
|
}
|
||||||
link.href = '/assets/img/new_favicon.ico';
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/wordle/index.html#infinite" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/wordle/index.html#infinite" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||||
|
|
BIN
assets/img/classroom.ico
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
assets/img/clever.ico
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
assets/img/coolmathgames.ico
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/img/desmos.ico
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
assets/img/docs.ico
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
assets/img/drive.ico
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
assets/img/ixl.ico
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
assets/img/khan.ico
Normal file
After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
BIN
assets/img/schoology.ico
Normal file
After Width: | Height: | Size: 6.7 KiB |
|
@ -32,21 +32,39 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
document.title = "Student and Parent Sign In";
|
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)");
|
||||||
|
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
const options = {
|
||||||
if (!link) {
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
link = document.createElement('link');
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link.rel = 'icon';
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
}
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
|
|
44
index.html
|
@ -33,22 +33,38 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
|
|
|
@ -33,30 +33,49 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('keydown', function(event) {
|
document.addEventListener("keydown", function (event) {
|
||||||
if (event.key === '.') {
|
if (event.key === ".") {
|
||||||
// Change title
|
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)");
|
||||||
document.title = "Student and Parent Sign In";
|
|
||||||
|
|
||||||
// Change favicon
|
const options = {
|
||||||
var link = document.querySelector("link[rel~='icon']");
|
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||||
if (!link) {
|
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||||
link = document.createElement('link');
|
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||||
link.rel = 'icon';
|
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||||
}
|
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||||
link.href = '/assets/img/new_favicon.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);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
</script>
|
});
|
||||||
|
|
||||||
|
function changeFavicon(src) {
|
||||||
|
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||||
|
link.type = "image/x-icon";
|
||||||
|
link.rel = "shortcut icon";
|
||||||
|
link.href = src;
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img src="/assets/img/milk_optimized.png" class="center">
|
<img src="/assets/img/milk_optimized.png" class="center">
|
||||||
<h1 class="center-text">MilkNet</h1>
|
<h1 class="center-text">MilkNet</h1>
|
||||||
<p class="center-text">Settings & Tools (these work on all games and pages)</p>
|
<p class="center-text">Settings & Tools | These work on all games and pages. Test them here</p>
|
||||||
|
<p class="center-text">(except Eaglercraft)</p>
|
||||||
|
|
||||||
|
|
||||||
<div class="center-text">
|
<div class="center-text">
|
||||||
<p>. - Cloak key (customizable later)</p> • <p>, - Panic key (Opens link of your choice)</p>
|
<p>. - Cloak key</p> • <p>, - Panic key (Opens link of your choice)</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|