-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v4.4.6 - Small UI Updates, Small Apps & Games Update
- Loading branch information
Showing
29 changed files
with
475 additions
and
289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
<link rel="icon" href="/assets/img/doge.jpg"> | ||
<link rel="stylesheet" href="/assets/css/app.css"> | ||
<link rel="stylesheet" href="/assets/css/menu.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/script.js/2.0.2/script.min.js" integrity="sha512-UWtTDM6wtl/qutDD6i1JOGZGiEd92dveVzuLl8sMBkMHlOHcbZdexM7ZrKkeaugW7vhqDnWc2pPD/ohEV+BBbg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script rel="preload" src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,87 @@ | ||
<!DOCTYPE html> | ||
|
||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="robots" content="noindex"> | ||
<link rel="icon" href="/assets/img/doge.jpg" /> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/script.js/2.0.2/script.min.js" integrity="sha512-UWtTDM6wtl/qutDD6i1JOGZGiEd92dveVzuLl8sMBkMHlOHcbZdexM7ZrKkeaugW7vhqDnWc2pPD/ohEV+BBbg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/script.js/2.0.2/script.min.js" | ||
integrity="sha512-UWtTDM6wtl/qutDD6i1JOGZGiEd92dveVzuLl8sMBkMHlOHcbZdexM7ZrKkeaugW7vhqDnWc2pPD/ohEV+BBbg==" | ||
crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script src="/assets/js/anym.js"></script> | ||
<script src="/assets/js/functions.js"></script> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6YEQ7Q0XRC"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
gtag('config', 'G-6YEQ7Q0XRC'); | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { dataLayer.push(arguments); } | ||
gtag('js', new Date()); | ||
gtag('config', 'G-6YEQ7Q0XRC'); | ||
</script> | ||
<title>Doge | V4</title> | ||
<script> | ||
window.onload = function() { | ||
let encodedAg = localStorage.getItem("agUrl"); | ||
encodedAg = "/service/" + encodedAg; | ||
document.querySelector("#siteurl").src = encodedAg; | ||
window.onload = function () { | ||
|
||
let encodedAg = localStorage.getItem("agUrl"); | ||
encodedAg = "/service/" + encodedAg; | ||
document.querySelector("#siteurl").src = encodedAg; | ||
/* Now.GG */ | ||
var scriptElement = document.createElement('script'); | ||
scriptElement.src = '/assets/js/now.js'; | ||
scriptElement.onload = function() { | ||
console.log('Sucessfully loaded Now.GG injection script.'); | ||
}; | ||
scriptElement.onerror = function() { | ||
console.error('Now.GG injection could not be loaded.'); | ||
}; | ||
document.head.appendChild(scriptElement); | ||
/* URL Cloaking */ | ||
function getRandomThreeDigitNumber() { | ||
return Math.floor(Math.random() * 900) + 100; | ||
} | ||
var scriptElement = document.createElement('script'); | ||
scriptElement.src = '/assets/js/now.js'; | ||
scriptElement.onload = function () { | ||
console.log('Sucessfully loaded Now.GG injection script.'); | ||
}; | ||
scriptElement.onerror = function () { | ||
console.error('Now.GG injection could not be loaded.'); | ||
}; | ||
document.head.appendChild(scriptElement); | ||
/* URL Cloaking */ | ||
function getRandomThreeDigitNumber() { | ||
return Math.floor(Math.random() * 900) + 100; | ||
} | ||
function getRandomAlphanumericString(length) { | ||
const characters = "abcdefghijklmnopqrstuvw0123456789012345"; | ||
let result = ""; | ||
for (let i = 0; i < length; i++) { | ||
result += characters.charAt(Math.floor(Math.random() * characters.length)); | ||
} | ||
return result; | ||
} | ||
const characters = "abcdefghijklmnopqrstuvw0123456789012345"; | ||
let result = ""; | ||
for (let i = 0; i < length; i++) { | ||
result += characters.charAt(Math.floor(Math.random() * characters.length)); | ||
} | ||
return result; | ||
} | ||
var randomThreeDigitNumber = getRandomThreeDigitNumber(); | ||
var randomAlphanumericString = getRandomAlphanumericString(15); | ||
var url = "/lessons?pg=" + randomThreeDigitNumber + "#" + randomAlphanumericString; | ||
var title = "Google Docs"; | ||
var randomAlphanumericString = getRandomAlphanumericString(15); | ||
var url = "/lessons?pg=" + randomThreeDigitNumber + "#" + randomAlphanumericString; | ||
var title = "Google Docs"; | ||
history.pushState({}, title, url); | ||
}; | ||
</script> | ||
}; | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<script src="/assets/js/index.js"></script> | ||
<script src="/uv/uv.bundle.js"></script> | ||
<script src="/uv/uv.bundle.js"></script> | ||
<script src="/uv/uv.config.js"></script> | ||
<script src="/assets/js/ag.js"></script> | ||
<script> | ||
if (localStorage.getItem("currentAg") == "nealFun") { | ||
window.addEventListener("message", (event) => { | ||
|
||
iframe = document.getElementById('siteurl') | ||
if (event.source === iframe.contentWindow) { | ||
|
||
const game = event.data.nfg | ||
|
||
|
||
|
||
} else { | ||
//pass | ||
} | ||
}); | ||
} | ||
</script> | ||
<script> | ||
window.navigator.serviceWorker | ||
.register("/sw.js", { | ||
scope: __uv$config.prefix, | ||
}); | ||
.register("/sw.js", { | ||
scope: __uv$config.prefix, | ||
}); | ||
</script> | ||
<iframe src="loading.html" id="siteurl" style="position: fixed; inset: 0px; outline: none; border: none; height: 100%; width: 100%; overflow: hidden;"></iframe> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
<link rel="stylesheet" href="/assets/css/app.css"> | ||
<link rel="stylesheet" href="/assets/css/gms.css"> | ||
<link rel="stylesheet" href="/assets/css/menu.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/script.js/2.0.2/script.min.js" integrity="sha512-UWtTDM6wtl/qutDD6i1JOGZGiEd92dveVzuLl8sMBkMHlOHcbZdexM7ZrKkeaugW7vhqDnWc2pPD/ohEV+BBbg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script src="/assets/js/functions.js"></script> | ||
|
@@ -33,7 +32,8 @@ | |
</nav> | ||
<div class="search-bar themesExcluded" style="display: flex; justify-content: center; border-radius: 10px; margin: 20px;"> | ||
<form id="searchForm" onsubmit="return false;" autocomplete="off"> | ||
<input id="searchApps" placeholder="Search for apps..." class="searchbar"></form> | ||
<i class="bi bi-search searchIcon" style="margin-left: 147px;" id="search"></i> | ||
<input id="searchApps" style="width: 420px;" placeholder="Search for apps" class="searchbar"></form> | ||
</div> | ||
<div class="search-results themesExcluded" id="appContainer" style="display: flex; justify-content: center; flex-wrap: wrap;"> | ||
<div id="searchMessage" style="display: none;color:white;text-align: center;font-size: 30px;margin:20px;font-family:poppins;" class="themesExcluded"></div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.