From 6d3197438442f40e60a5eed07626a2479056dc3a Mon Sep 17 00:00:00 2001 From: rednotsus Date: Fri, 12 Apr 2024 20:46:47 -0500 Subject: [PATCH] change all html to js --- static/apps.html | 424 +-- static/art.html | 4437 +----------------------------- static/assets/js/apps.js | 78 +- static/assets/js/games.js | 35 + static/assets/js/searchbar.v2.js | 4 +- static/assets/json/apps.json | 206 ++ static/assets/json/games.json | 1892 +++++++++++++ 7 files changed, 2165 insertions(+), 4911 deletions(-) create mode 100644 static/assets/js/games.js create mode 100644 static/assets/json/apps.json create mode 100644 static/assets/json/games.json diff --git a/static/apps.html b/static/apps.html index b1d3a51b..b2e104f9 100644 --- a/static/apps.html +++ b/static/apps.html @@ -5,7 +5,6 @@ - Dashboard @@ -31,17 +30,9 @@

Apps

+
- Apps autocomplete="off" /> -
- - diff --git a/static/art.html b/static/art.html index 6fe5837c..ce46148d 100644 --- a/static/art.html +++ b/static/art.html @@ -36,14 +36,7 @@

- - + type="text" autocomplete="off" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ - + \ No newline at end of file diff --git a/static/assets/js/apps.js b/static/assets/js/apps.js index cc50fddf..af7b737d 100644 --- a/static/assets/js/apps.js +++ b/static/assets/js/apps.js @@ -1,54 +1,24 @@ -class ABC { - constructor(o = {}) { - (this.type = o.type || "blank"), (this.url = o.url || "about:blank"); - } - setType(o) { - o && (this.type = o); - } - setUrl(o) { - o && (this.url = o); - } - getCode() { - return ( - '' - ); - } - open() { - if ("blank" == this.type) - try { - (o = window.open()).document.body.innerHTML = - ''; - } catch {} - else if ("blob" == this.type) - try { - var o = new Blob( - [ - '', - ], - { type: "text/html" }, - ); - window.open(URL.createObjectURL(o)); - } catch {} - else if ("overwrite" == this.type) - try { - document.body.innerHTML = - ''; - } catch {} - } -} -function flix() { - var o = new ABC({ type: "blank", url: "https://google.com" }); - o.setType("blank"), o.setUrl("https://direct.gmsmedia.pics/"), o.open(); -} -function netflix() { - var o = new ABC({ type: "blank", url: "https://google.com" }); - o.setType("blank"), o.setUrl("https://direct.gmsmedia.pics/"), o.open(); -} +window.addEventListener("load", (event) => { + const gameContainer = document.getElementById("game-container"); + fetch("/assets/json/apps.json") + .then((response) => response.json()) + .then((apps) => { + apps.sort((a, b) => a.name.localeCompare(b.name)); + apps.forEach(function (game) { + let gameHtml; + gameHtml = `
+ +
+ +

${game.name}

+
+
+
`; + gameContainer.insertAdjacentHTML("beforeend", gameHtml); + }); + + let searchbar = document.getElementById("searchbar"); + if (searchbar) + searchbar.placeholder = `Click here to search through our ${apps.length} apps!`; + }); +}); diff --git a/static/assets/js/games.js b/static/assets/js/games.js new file mode 100644 index 00000000..3d2ec808 --- /dev/null +++ b/static/assets/js/games.js @@ -0,0 +1,35 @@ +window.addEventListener("load", (event) => { + const gameContainer = document.getElementById("game-container"); + fetch("/assets/json/games.json") + .then((response) => response.json()) + .then((games) => { + games.sort((a, b) => a.name.localeCompare(b.name)); + games.forEach(function (game) { + let gameHtml; + if (game.usesProxy) { + gameHtml = `
+ +
+ +

${game.name}

+
+
+
`; + } else if (!game.usesProxy) { + gameHtml = `
+ +
+ +

${game.name}

+
+
+
`; + } + gameContainer.insertAdjacentHTML("beforeend", gameHtml); + }); + + let searchbar = document.getElementById("searchbar"); + if (searchbar) + searchbar.placeholder = `Click here to search through our ${games.length} games!`; + }); +}); diff --git a/static/assets/js/searchbar.v2.js b/static/assets/js/searchbar.v2.js index e1d82dae..0acbed50 100644 --- a/static/assets/js/searchbar.v2.js +++ b/static/assets/js/searchbar.v2.js @@ -1,6 +1,6 @@ function search() { let e = document.getElementById("searchbar").value.toLowerCase(); - let n = document.getElementsByClassName("animals"); + let n = document.getElementsByClassName("card"); for (let t = 0; t < n.length; t++) n[t].innerHTML.toLowerCase().includes(e) ? (n[t].style.display = "block") @@ -25,5 +25,5 @@ document.addEventListener("keydown", function (e) { let searchbar = document.getElementById("searchbar"); searchbar.focus(); - if (c.toLowerCase() != c.toUpperCase()) searchbar.value += e.key; + if (e.toLowerCase() != e.toUpperCase()) searchbar.value += e.key; }); diff --git a/static/assets/json/apps.json b/static/assets/json/apps.json new file mode 100644 index 00000000..261371d3 --- /dev/null +++ b/static/assets/json/apps.json @@ -0,0 +1,206 @@ +[ + { + "name": "9Anime", + "link": "https://9animetv.to/", + "image": "/assets/apps/9anime.jpg" + }, + { + "name": "Amazon", + "link": "https://amazon.com/", + "image": "/assets/apps/amazon.png" + }, + { + "name": "Bingewatch.To", + "link": "https://bingewatch.to/", + "image": "assets/apps/bingewatch.png" + }, + { + "name": "BuzzFeed Quizzes", + "link": "https://buzzfeed.com/quizzes", + "image": "assets/apps/buzzfeed.png" + }, + { + "name": "ChatGPT", + "link": "https://chatgptfree.ai/chat/", + "image": "assets/apps/chatgpt.png" + }, + { + "name": "Chess.com", + "link": "https://chess.com", + "image": "assets/apps/chess.png" + }, + { + "name": "Cool Math Games", + "link": "https://coolmathgames.com", + "image": "assets/apps/coolmath.png" + }, + { + "name": "Crazy Games", + "link": "https://www.crazygames.com/", + "image": "assets/apps/crazygames.png" + }, + { + "name": "Deep AI", + "link": "https://deep.ai/", + "image": "assets/apps/deep.png" + }, + { + "name": "Discord", + "link": "https://canary.discord.com", + "image": "assets/apps/discord.jpg", + "broken": "True" + }, + { + "name": "DuckDuckGo", + "link": "https://start.duckduckgo.com/", + "image": "assets/apps/duckduckgo.png" + }, + { + "name": "ESPN", + "link": "https://www.espn.com/watch/", + "image": "assets/apps/espn.webp" + }, + { + "name": "FlixHQ", + "link": "https://direct.gmsmedia.pics/", + "image": "assets/apps/flixhq.png" + }, + { + "name": "FzMovies", + "link": "https://www.fzmovies.net/", + "image": "assets/apps/fzmovies.webp" + }, + { + "name": "Geforce NOW", + "link": "https://play.geforcenow.com/mall/#/layout/games", + "image": "assets/apps/geforce-now.png" + }, + { + "name": "Github", + "link": "https://github.com/", + "image": "assets/apps/github.png" + }, + { + "name": "Google Gemini (AI)", + "link": "https://gemini.google.com", + "image": "assets/apps/gemini.webp" + }, + { + "name": "Google", + "link": "https://google.com", + "image": "assets/apps/google.png" + }, + { + "name": "HBO Max", + "link": "https://www.hbomax.com/", + "image": "assets/apps/hbo.webp" + }, + { + "name": "Hulu", + "link": "https://www.hulu.com/", + "image": "assets/apps/hulu.png" + }, + { + "name": "Mathway", + "link": "https://www.mathway.com/Algebra", + "image": "assets/apps/mathway.webp" + }, + { + "name": "Netflix", + "link": "e", + "image": "assets/apps/netflix.png" + }, + { + "name": "Now.GG", + "link": "https://now.gg/", + "image": "assets/apps/nowgg.png", + "broken": "true" + }, + { + "name": "Paramount", + "link": "https://www.paramountplus.com/", + "image": "assets/apps/paramount.png" + }, + { + "name": "Pinterest", + "link": "https://pinterest.fr", + "image": "assets/apps/pinterest.png" + }, + { + "name": "Pixlr", + "link": "https://pixlr.com/", + "image": "assets/apps/pixlr.jpeg" + }, + { + "name": "Poki", + "link": "https://poki.com", + "image": "assets/apps/poki.png" + }, + { + "name": "Reddit", + "link": "https://www.redditery.com/", + "image": "assets/apps/reddit.png" + }, + { + "name": "Roblox", + "link": "https://nowgg.nl/iframe/snippet?app_pkg=com.roblox.client&partner=55gms", + "image": "misc/roblos/rbx.jpeg", + "broken": "true" + }, + { + "name": "Spotify", + "link": "https://open.spotify.com/", + "image": "assets/apps/spotify.png", + "broken": "true" + }, + { + "name": "SoundCloud", + "link": "https://soundcloud.com/", + "image": "assets/apps/soundcloud.jpg" + }, + { + "name": "Twitch", + "link": "https://www.twitch.tv/", + "image": "assets/apps/twitch-tv.png" + }, + { + "name": "Tiktok", + "link": "https://tiktok.com/", + "image": "assets/apps/tiktok.png" + }, + { + "name": "Tumblr", + "link": "https://www.tumblr.com/", + "image": "assets/apps/tumblr.png" + }, + { + "name": "Twitter", + "link": "https://twitter.com/", + "image": "assets/apps/twitter.png" + }, + { + "name": "VS Code", + "link": "https://vscode.dev/", + "image": "assets/apps/vscode.png" + }, + { + "name": "WattPad", + "link": "https://wattpad.com/", + "image": "assets/apps/wattpad.jpg" + }, + { + "name": "Y8 Games", + "link": "https://y8.com/", + "image": "assets/apps/y8.png" + }, + { + "name": "Youtube", + "link": "https://youtube.com/", + "image": "assets/apps/yt.png" + }, + { + "name": "Youtube Music", + "link": "https://music.youtube.com/", + "image": "assets/apps/ytm.avif" + } +] diff --git a/static/assets/json/games.json b/static/assets/json/games.json new file mode 100644 index 00000000..a2361e6c --- /dev/null +++ b/static/assets/json/games.json @@ -0,0 +1,1892 @@ +[ + { + "name": "[!!] Request A Game", + "url": "https://forms.gle/E4SAJFLEPqT18Jgo9", + "image": "/img/jotform.png", + "usesProxy": false + }, + { + "name": "[!] Bug Reports", + "url": "https://forms.gle/st5iQsJ3AUrspRRv8", + "image": "/img/bug.webp", + "usesProxy": false + }, + { + "name": "Eaglercraft Hacks", + "url": "/misc/11eaglercraft/index.html", + "image": "/img/no.webp", + "usesProxy": false + }, + { + "name": "1v1.lol", + "url": "/misc/1v1-lol/index.html", + "image": "/misc/1v1-lol/splash.webp", + "usesProxy": false + }, + { + "name": "1v1.lol Updated", + "url": "/misc/1v1-lol2/index.html", + "image": "/misc/1v1-lol2/img.webp", + "usesProxy": false + }, + { + "name": "1 on 1 Soccer", + "url": "/misc/flash/index.html?swf=1on1soccer.swf", + "image": "/misc/flash/img/1o1.webp", + "usesProxy": false + }, + { + "name": "2048", + "url": "/misc/2048/index.html", + "image": "/misc/2048/2048.webp", + "usesProxy": false + }, + { + "name": "2D Rocket League", + "url": "/misc/2drocketleague/index.html", + "image": "/misc/2drocketleague/unnamed.webp", + "usesProxy": false + }, + { + "name": "60 Second Burger Run", + "url": "/misc/60-sec-burger-run/index.html", + "image": "/misc/60-sec-burger-run/img.webp", + "usesProxy": false + }, + { + "name": "A Dance Of Fire & Ice", + "url": "/misc/a-dance-of-fire-and-ice/index.html", + "image": "/misc/a-dance-of-fire-and-ice/splash.webp", + "usesProxy": false + }, + { + "name": "Advance Wars", + "url": "/misc/emulator/games/advancewars/index.html", + "image": "/misc/emulator/games/advancewars/advcewrs.webp", + "usesProxy": false + }, + { + "name": "Advance Wars 2", + "url": "/misc/emulator/games/advancewars/2/index.html", + "image": "/misc/emulator/games/advancewars/2/advcewrs2.webp", + "usesProxy": false + }, + { + "name": "Adventure Capitalist", + "url": "https://than1089.github.io/adventure-capitalist/", + "image": "/misc/adventure-capitalist/img.webp", + "usesProxy": true + }, + { + "name": "Adventures w/ Anxiety", + "url": "https://ncase.me/anxiety/", + "image": "/misc/AdventureswithAnxiety/img.webp", + "usesProxy": true + }, + { + "name": "Alien Hominid", + "url": "/misc/emulator/games/alien/index.html", + "image": "/misc/emulator/games/alien/alien.webp", + "usesProxy": false + }, + { + "name": "Amazing rope police", + "url": "/misc/amazing-rope-police/index.html", + "image": "/misc/amazing-rope-police/img.webp", + "usesProxy": false + }, + { + "name": "Android", + "url": "https://now.gg/iframe/snippet?app_pkg=com.uncube.launcher3&partner=55gms", + "image": "/misc/roblos/android.webp", + "usesProxy": true + }, + { + "name": "Archery World Tour", + "url": "/misc/archeryWorldTour/index.html", + "image": "/misc/archeryWorldTour/img.webp", + "usesProxy": false + }, + { + "name": "A Small World Cup", + "url": "/misc/asmallworldcup/index.html", + "image": "/misc/asmallworldcup/img.webp", + "usesProxy": false + }, + { + "name": "Awswome Tanks", + "url": "/misc/awesometanks/index.html", + "image": "/misc/awesometanks/game.webp", + "usesProxy": false + }, + { + "name": "Awesome Tanks 2", + "url": "/misc/awsometanks2/index.html", + "image": "/misc/awsometanks2/icon.webp", + "usesProxy": false + }, + { + "name": "Bacon May Die", + "url": "https://boxing2.github.io/b88/bacon-may-die/", + "image": "/misc/bacon-may-die/splash.webp", + "usesProxy": true + }, + { + "name": "Bad Ice Cream", + "url": "/misc/badicecream/index.html", + "image": "/misc/badicecream/img.webp", + "usesProxy": false + }, + { + "name": "Bad Ice Cream 2", + "url": "/misc/badicecream2/index.html", + "image": "/misc/badicecream2/img.webp", + "usesProxy": false + }, + { + "name": "Bad Ice Cream 3", + "url": "/misc/badicecream3/index.html", + "image": "/misc/badicecream3/img.webp", + "usesProxy": false + }, + { + "name": "Basket Random", + "url": "/misc/basket-random/index.html", + "image": "/misc/basket-random/img.webp", + "usesProxy": false + }, + { + "name": "Basketball Stars", + "url": "/misc/basketball-stars/index.html", + "image": "/misc/basketball-stars/basketstars.webp", + "usesProxy": false + }, + { + "name": "Basketbros", + "url": "/misc/basketbros-io/index.html", + "image": "/misc/basketbros-io/thumb.webp", + "usesProxy": false + }, + { + "name": "BitLife", + "url": "/misc/bitlife/index.html", + "image": "/misc/bitlife/splash.webp", + "usesProxy": false + }, + { + "name": "Bloons TD", + "url": "/misc/flash/index.html?swf=bloonstd1.swf", + "image": "/misc/flash/img/btd.webp", + "usesProxy": false + }, + { + "name": "Bloons TD 2", + "url": "/misc/flash/index.html?swf=bloons-tower-defense-2.swf", + "image": "/misc/flash/img/btd2.webp", + "usesProxy": false + }, + { + "name": "Bloons TD 3", + "url": "/misc/flash/index.html?swf=bloonstd3.swf", + "image": "/misc/flash/img/btd3.webp", + "usesProxy": false + }, + { + "name": "Bloons TD 4", + "url": "/misc/flash/gfiles/btd4/index.html", + "image": "/misc/flash/img/btd4.jpeg", + "usesProxy": false + }, + { + "name": "Bloxrz", + "url": "https://ad-freegames.github.io/flash/game/bloxorz.html", + "image": "/misc/bloxrz/img.webp", + "usesProxy": true + }, + { + "name": "Bottle Flip", + "url": "/misc/BottleFlip/index.html", + "image": "/misc/BottleFlip/icons/icon-256.webp", + "usesProxy": false + }, + { + "name": "Bottle Flip 3D", + "url": "/misc/BottleFlip3D/index.html", + "image": "/misc/BottleFlip3D/img.png", + "usesProxy": false + }, + { + "name": "Boxing Random", + "url": "/misc/boxing-random/index.html", + "image": "/misc/boxing-random/img.jpeg", + "usesProxy": false + }, + { + "name": "Bad Times Simulator", + "url": "https://jcw87.github.io/c2-sans-fight/", + "image": "/misc/bsans/icon-256.png", + "usesProxy": true + }, + { + "name": "Cell Machine", + "url": "https://samhogan.itch.io/cell-machine", + "image": "/misc/cellmachine/img.webp", + "usesProxy": true + }, + { + "name": "Chrome Dino Game", + "url": "/misc/chrome-dino/index.html", + "image": "/misc/chrome-dino/icons/icon-256.png", + "usesProxy": false + }, + { + "name": "Cluster Rush", + "url": "/misc/cluster-rush/index.html", + "image": "/misc/cluster-rush/icon.jpg", + "usesProxy": false + }, + { + "name": "Connect 4", + "url": "/misc/emulator/games/connect4/index.html", + "image": "/misc/emulator/games/connect4/connect4.jpeg", + "usesProxy": false + }, + { + "name": "Cookie Clicker", + "url": "/misc/cookieclicker/index.html", + "image": "/misc/cookieclicker/clicker.jpeg", + "usesProxy": false + }, + { + "name": "Cookie Run Kingdom", + "url": "https://now.gg/iframe/snippet?app_pkg=com.devsisters.ck&partner=55gms", + "image": "/misc/roblos/crc.webp", + "usesProxy": true + }, + { + "name": "Cubefield", + "url": "/misc/flash/index.html?swf=cubefield.swf", + "image": "/misc/flash/img/cubefield.webp", + "usesProxy": false + }, + { + "name": "Crash Bandicoot", + "url": "/misc/emulator/games/chbc/index.html", + "image": "/misc/emulator/games/chbc/chbc.webp", + "usesProxy": false + }, + { + "name": "Crash Bandicoot 2", + "url": "/misc/emulator/games/cb2/index.html", + "image": "/misc/emulator/games/cb2/cb2.webp", + "usesProxy": false + }, + { + "name": "Crossy Road", + "url": "/misc/crossy-road/index.html", + "image": "/misc/crossy-road/crossyroad.png", + "usesProxy": false + }, + { + "name": "CSGO Clicker", + "url": "/misc/csgo-clicker/index.html", + "image": "/misc/csgo-clicker/new.webp", + "usesProxy": false + }, + { + "name": "Dadish", + "url": "/misc/dadish/index.html", + "image": "/misc/dadish/img.webp", + "usesProxy": false + }, + { + "name": "Dadish 2", + "url": "/misc/dadish2/index.html", + "image": "/misc/dadish2/2.webp", + "usesProxy": false + }, + { + "name": "Dadish 3", + "url": "/misc/dadish3/index.html", + "image": "/misc/dadish3/img.avif", + "usesProxy": false + }, + { + "name": "Daily Dadish", + "url": "https://cloud.papasgaming.com/file/h5games/onlinegames/games/2023/q2/daily-dadish/index.html", + "image": "/misc/dadish3/img.webp", + "usesProxy": true + }, + { + "name": "Deal or No Deal", + "url": "/misc/deal-or-no-deal/index.html", + "image": "/misc/deal-or-no-deal/index.jpg", + "usesProxy": false + }, + { + "name": "Deeeep.io", + "url": "https://beta.deeeep.io/", + "image": "/misc/deeeep-io/img.webp", + "usesProxy": true + }, + { + "name": "Defly.io", + "url": "https://defly.io/", + "image": "/misc/defly-io/img.jpeg", + "usesProxy": true + }, + { + "name": "Diep.Io", + "url": "https://diep.io/", + "image": "/img/games/diep.webp", + "usesProxy": true + }, + { + "name": "Doge Miner", + "url": "/misc/dogeminer/index.html", + "image": "/misc/dogeminer/img.jpeg", + "usesProxy": false + }, + { + "name": "Doodle Jump", + "url": "/misc/doodlejump/index.html", + "image": "/misc/doodlejump/icon.webp", + "usesProxy": false + }, + { + "name": "DOOM", + "url": "https://archive.org/details/doom-play", + "image": "/misc/doom/img.webp", + "usesProxy": true + }, + { + "name": "Draw The Hill", + "url": "/misc/draw_the_hill/index.html", + "image": "/misc/draw_the_hill/icons/icon-512.png", + "usesProxy": false + }, + { + "name": "Dread Head Parkour", + "url": "/misc/dreadheadparkour/index.html", + "image": "/misc/dreadheadparkour/icons/icon-128.png", + "usesProxy": false + }, + { + "name": "Donkey Kong Country", + "url": "/misc/emulator/games/donkeykong/index.html", + "image": "/misc/emulator/games/donkeykong/dkc.webp", + "usesProxy": false + }, + { + "name": "Donkey Kong Country 2", + "url": "/misc/emulator/games/donkeykong/dkc/index.html", + "image": "/misc/emulator/games/donkeykong/dkc/dk.webp", + "usesProxy": false + }, + { + "name": "Donkey Kong KOS", + "url": "/misc/emulator/games/donkeykong/dkkos/index.html", + "image": "/misc/emulator/games/donkeykong/dkkos/dkkos.jpeg", + "usesProxy": false + }, + { + "name": "Drift Boss", + "url": "/misc/drift-boss/index.html", + "image": "/misc/drift-boss/img.jpeg", + "usesProxy": false + }, + { + "name": "Drift Hunters", + "url": "/misc/drift-hunters/index.html", + "image": "/misc/drift-hunters/drift-hunters.webp", + "usesProxy": false + }, + { + "name": "Drive Mad", + "url": "/misc/drive-mad/index.html", + "image": "/misc/drive-mad/img.jpeg", + "usesProxy": false + }, + { + "name": "Duck Life", + "url": "/misc/flash/index.html?swf=duck-life.swf", + "image": "/misc/flash/img/dl.avif", + "usesProxy": false + }, + { + "name": "Duck Life 2", + "url": "/misc/flash/index.html?swf=duck-life-2.swf", + "image": "/misc/flash/img/dl2.avif", + "usesProxy": false + }, + { + "name": "Duck Life 3", + "url": "/misc/flash/index.html?swf=duck-life-3.swf", + "image": "/misc/flash/img/dl3.avif", + "usesProxy": false + }, + { + "name": "Duck Life 4", + "url": "/misc/flash/index.html?swf=duck-life-4.swf", + "image": "/misc/flash/img/dl4.jpeg", + "usesProxy": false + }, + { + "name": "EA Sports FC24", + "url": "https://now.gg/iframe/snippet?app_pkg=com.ea.gp.fifamobile&partner=55gms", + "image": "/img/games/easportsfc.webp", + "usesProxy": true + }, + { + "name": "Eaglercraft X", + "url": "/misc/eaglercraftx/index.html", + "image": "/misc/eaglercraftx/img.png", + "usesProxy": false + }, + { + "name": "Edge Surf", + "url": "/misc/edge-surf/index.html", + "image": "/misc/edge-surf/splash.png", + "usesProxy": false + }, + { + "name": "Edge Not Found", + "url": "/misc/edgenotfound/index.html", + "image": "/misc/edgenotfound/edge.png", + "usesProxy": false + }, + { + "name": "Eggy Car", + "url": "/misc/eggy-car/index.html", + "image": "/misc/eggy-car/img.png", + "usesProxy": false + }, + { + "name": "Elastic Face", + "url": "https://d21u3ic0kp9e91.cloudfront.net/elasticman/0/index.html", + "image": "/misc/elastic-face/img.jpeg", + "usesProxy": true + }, + { + "name": "Emulator JS", + "url": "/misc/emulator/emulatorjs/index.html", + "image": "/misc/emulator/emulatorjs/logo.png", + "usesProxy": false + }, + { + "name": "E Parkour.Io", + "url": "https://eparkour.io/", + "image": "/img/games/eparkour.webp", + "usesProxy": true + }, + { + "name": "Factory Balls", + "url": "/misc/flash/index.html?swf=factory-balls.swf", + "image": "/misc/factory-balls/1.webp", + "usesProxy": false + }, + { + "name": "Factory Balls 2", + "url": "/misc/flash/index.html?swf=factory-balls-2.swf", + "image": "/misc/factory-balls/1.webp", + "usesProxy": false + }, + { + "name": "Factory Balls 3", + "url": "/misc/flash/index.html?swf=factory-balls-3.swf", + "image": "/misc/factory-balls/1.webp", + "usesProxy": false + }, + { + "name": "Fake Virus", + "url": "/misc/fake-virus/index.html", + "image": "/misc/fake-virus/icon.png", + "usesProxy": false + }, + { + "name": "FancyPants Adventure", + "url": "/misc/flash/index.html?swf=fancypantsadventure.swf", + "image": "/misc/flash/img/fpa.png", + "usesProxy": false + }, + { + "name": "FancyPants Adventure 2", + "url": "/misc/flash/index.html?swf=fancypantsadventure2.swf", + "image": "/misc/flash/img/fpa2.avif", + "usesProxy": false + }, + { + "name": "Fire Boy Water Girl", + "url": "/misc/fbwg/index.html", + "image": "/misc/fbwg/logo.jpeg", + "usesProxy": false + }, + { + "name": "Fire Boy Water Girl 2", + "url": "/misc/fbwg2/index.html", + "image": "/misc/fbwg2/assets/img.jpeg", + "usesProxy": false + }, + { + "name": "Fire Boy Water Girl 3", + "url": "/misc/fbwg3/index.html", + "image": "/misc/fbwg3/icon.png", + "usesProxy": false + }, + { + "name": "Fire Boy Water Girl 4", + "url": "/misc/fbwg4/index.html", + "image": "/misc/fbwg4/img.jpg", + "usesProxy": false + }, + { + "name": "Fire Boy Water Girl 5", + "url": "https://www.coolmathgames.com/sites/default/files/public_games/40218", + "image": "/misc/fbwg2/assets/5.webp", + "usesProxy": true + }, + { + "name": "Fire Boy Water Girl 6", + "url": "https://html5.gamedistribution.com/rvvASMiM/be3cff113c4e4f069b7614851825ffe9/index.html", + "image": "/misc/fbwg2/assets/6.webp", + "usesProxy": true + }, + { + "name": "Fifa 2007", + "url": "/misc/fifa/index.html", + "image": "/misc/fifa/fifa07.jpeg", + "usesProxy": false + }, + { + "name": "Flappy Bird", + "url": "/misc/flappy-bird/index.html", + "image": "/misc/flappy-bird/assets/thumb.png", + "usesProxy": false + }, + { + "name": "Flight Pilot Airplane", + "url": "https://html5.gamedistribution.com/rvvASMiM/895b66741b8a411fa92cc58f3a309b23/index.html?gd_zone_config=eyJwYXJlbnRVUkwiOiJodHRwczovL2h0bWw1LmdhbWVkaXN0cmlidXRpb24uY29tLzg5NWI2Njc0MWI4YTQxMWZhOTJjYzU4ZjNhMzA5YjIzLyIsInBhcmVudERvbWFpbiI6Imh0bWw1LmdhbWVkaXN0cmlidXRpb24uY29tIiwidG9wRG9tYWluIjoiaHRtbDUuZ2FtZWRpc3RyaWJ1dGlvbi5jb20iLCJoYXNJbXByZXNzaW9uIjpmYWxzZSwibG9hZGVyRW5hYmxlZCI6dHJ1ZSwiaG9zdCI6Imh0bWw1LmdhbWVkaXN0cmlidXRpb24uY29tIiwidmVyc2lvbiI6IjEuNS4xNyJ9", + "image": "/img/games/fpag24.webp", + "usesProxy": true + }, + { + "name": "Flippy Fish", + "url": "/misc/flippyfish/index.html", + "image": "/misc/flippyfish/icon.png", + "usesProxy": false + }, + { + "name": "Florr.io", + "url": "https://florr.io/", + "image": "/misc/florr/img.webp", + "usesProxy": true + }, + { + "name": "FNAF", + "url": "https://wellsousaaa.github.io/Five-Nights-at-Freddys-Web/", + "image": "/misc/fnaf/img.jpeg", + "usesProxy": true + }, + { + "name": "FNAF 2", + "url": "https://sussygamedeveloper.github.io/FNAF2/", + "image": "/misc/fnaf/2.webp", + "usesProxy": true + }, + { + "name": "FNAF 3", + "url": "https://sussygamedeveloper.github.io/fnaf3/", + "image": "/misc/fnaf/3.jpeg", + "usesProxy": true + }, + { + "name": "FNAF 4", + "url": "/misc/fnaf4/index.html", + "image": "/misc/fnaf4/img.jpeg", + "usesProxy": false + }, + { + "name": "FNAF 5", + "url": "/misc/fnaf5/index.html", + "image": "/misc/fnaf5/img.avif", + "usesProxy": false + }, + { + "name": "Friday Night Funkin", + "url": "https://w8.snokido.com/games/html5/friday-night-funkin/0281/index.html", + "image": "/misc/fnf/img.png", + "usesProxy": true + }, + { + "name": "Fruit Ninja", + "url": "/misc/fruit-ninja/index.html", + "image": "/misc/fruit-ninja/img.jpeg", + "usesProxy": false + }, + { + "name": "Funny Shooter 2", + "url": "/misc/funny-shooter-2/index.html", + "image": "/misc/funny-shooter-2/img.jpeg", + "usesProxy": false + }, + { + "name": "Fortnite", + "url": "https://play.geforcenow.com/games?game-id=46bfab06-d864-465d-9e56-2d9e45cdee0a&lang=en_US&asset-id=01_94ff5082-1d9e-40a3-9829-9a1abcbea7cc", + "image": "/img/games/fortnite.jpeg", + "usesProxy": true + }, + { + "name": "Fortnite (Mobile)", + "url": "https://now.gg/iframe/snippet?app_pkg=com.epicgames.fortnite&partner=55gms", + "image": "/img/games/fortnite.jpeg", + "usesProxy": true + }, + { + "name": "Genshin Impact", + "url": "https://now.gg/iframe/snippet?app_pkg=com.miHoYo.GenshinImpact&partner=55gms", + "image": "/misc/roblos/genshin.webp", + "usesProxy": true + }, + { + "name": "Geometry Dash", + "url": "/misc/geometry-dash/index.html", + "image": "/misc/geometry-dash/img.jpeg", + "usesProxy": false + }, + { + "name": "Geometry Dash Meltdown", + "url": "/misc/geometry-dash-meltdown/index.html", + "image": "/misc/geometry-dash-meltdown/img.jpeg", + "usesProxy": false + }, + { + "name": "Geometry Dash Subzero", + "url": "/misc/geometry-dash-subzero/index.html", + "image": "/misc/geometry-dash-subzero/img.jpeg", + "usesProxy": false + }, + { + "name": "Geometry Dash World", + "url": "/misc/geometry-dash-world/index.html", + "image": "/misc/geometry-dash-world/img.jpeg", + "usesProxy": false + }, + { + "name": "Getaway Shootout", + "url": "/misc/getaway-shootout/index.html", + "image": "/misc/getaway-shootout/getaway.avif", + "usesProxy": false + }, + { + "name": "Gimme the Airpod", + "url": "/misc/gimme-the-airpod/index.html", + "image": "/img/games/gimmetheairpod.webp", + "usesProxy": false + }, + { + "name": "Gladihoppers", + "url": "/misc/gladihoppers/index.html", + "image": "/misc/gladihoppers/img.jpeg", + "usesProxy": false + }, + { + "name": "Google Baseball", + "url": "https://www.google.com/logos/2019/july4th19/r6/july4th19.html", + "image": "/img/games/googlebaseball.webp", + "usesProxy": true + }, + { + "name": "Google Snake", + "url": "/misc/google-snake/index.html", + "image": "/misc/google-snake/img.png", + "usesProxy": false + }, + { + "name": "GTA Advance", + "url": "/misc/emulator/games/gta/index.html", + "image": "/misc/emulator/games/gta/gtaa.png", + "usesProxy": false + }, + { + "name": "Grand Prix Hero", + "url": "/misc/grandprixhero/index.html", + "image": "/misc/grandprixhero/img.webp", + "usesProxy": false + }, + { + "name": "Grindcraft", + "url": "/misc/grindcraft/index.html", + "image": "/misc/grindcraft/img.png", + "usesProxy": false + }, + { + "name": "Gun Mayhem 2", + "url": "/misc/flash/index.html?swf=gmayhem2.swf", + "image": "/misc/flash/img/gm2.webp", + "usesProxy": false + }, + { + "name": "Gun Mayhem 3", + "url": "/misc/flash/index.html?swf=gun-mayhem-3.swf", + "image": "/misc/flash/img/gm3.webp", + "usesProxy": false + }, + { + "name": "Happy Wheels", + "url": "/misc/flash/index.html?swf=happywheels.swf", + "image": "/misc/happyweels/b.png", + "usesProxy": false + }, + { + "name": "Helix Jump", + "url": "https://helix-jump.game-files.crazygames.com/helix-jump/1/index.html", + "image": "/misc/helixjump/gameIcon.webp", + "usesProxy": true + }, + { + "name": "Head Soccer", + "url": "/misc/HeadSoccer/index.html", + "image": "/misc/HeadSoccer/img.webp", + "usesProxy": false + }, + { + "name": "Breaking the Bank", + "url": "/misc/flash/index.html?swf=bank.swf", + "image": "/misc/henry-stickman/bank.jpeg", + "usesProxy": false + }, + { + "name": "Escaping From Prison", + "url": "/misc/flash/index.html?swf=prison.swf", + "image": "/misc/henry-stickman/prison.png", + "usesProxy": false + }, + { + "name": "Stealing the Diamond", + "url": "/misc/flash/index.html?swf=diamond.swf", + "image": "/misc/henry-stickman/diamond.jpeg", + "usesProxy": false + }, + { + "name": "HexGL", + "url": "/misc/hexgl/index.html", + "image": "/misc/hexgl/icon_256.webp", + "usesProxy": false + }, + { + "name": "Hextris", + "url": "/misc/hextris/index.html", + "image": "/misc/hextris/images/icons/apple-touch-512.png", + "usesProxy": false + }, + { + "name": "Hobo", + "url": "/misc/flash/index.html?swf=hobo.swf", + "image": "/misc/flash/img/hobo.webp", + "usesProxy": false + }, + { + "name": "Hobo 2", + "url": "/misc/flash/index.html?swf=hobo-2.swf", + "image": "/misc/flash/img/hobo2.jpeg", + "usesProxy": false + }, + { + "name": "Hobo 3", + "url": "/misc/flash/index.html?swf=hobo-3.swf", + "image": "/misc/flash/img/hobo3.jpeg", + "usesProxy": false + }, + { + "name": "Hobo 4", + "url": "/misc/flash/index.html?swf=hobo-4.swf", + "image": "/misc/flash/img/hobo4.jpeg", + "usesProxy": false + }, + { + "name": "Hobo 5", + "url": "/misc/flash/index.html?swf=hobo-5.swf", + "image": "/misc/flash/img/hobo5.jpeg", + "usesProxy": false + }, + { + "name": "Hobo 6", + "url": "/misc/flash/index.html?swf=hobo-6.swf", + "image": "/misc/flash/img/hobo6.webp", + "usesProxy": false + }, + { + "name": "Hobo 7", + "url": "/misc/flash/index.html?swf=hobo-7.swf", + "image": "/misc/flash/img/hobo7.jpeg", + "usesProxy": false + }, + { + "name": "Hole.io", + "url": "/misc/hole-io/index.html", + "image": "/misc/hole-io/img.jpg", + "usesProxy": false + }, + { + "name": "Hornex.pro", + "url": "https://hornex.pro", + "image": "/img/games/hornexpro.jpeg", + "usesProxy": true + }, + { + "name": "House Of Hazards", + "url": "/misc/houseofhazards/index.html", + "image": "/misc/houseofhazards/img.jpeg", + "usesProxy": false + }, + { + "name": "Idle Dice", + "url": "/misc/idle_dice/index.html", + "image": "/misc/idle_dice/img.jpeg", + "usesProxy": false + }, + { + "name": "Idle Breakout", + "url": "/misc/idle-breakout/index.html", + "image": "/misc/idle-breakout/img/thumbnail.png", + "usesProxy": false + }, + { + "name": "Idle Mining Empire", + "url": "/misc/idle-mining-empire/index.html", + "image": "/misc/idle-mining-empire/img.jpeg", + "usesProxy": false + }, + { + "name": "Idle Restaurants", + "url": "/misc/IdleRestaurants/index.html", + "image": "/misc/IdleRestaurants/img.png", + "usesProxy": false + }, + { + "name": "Impossible Quiz", + "url": "/misc/impossible-quiz/index.html", + "image": "/misc/impossible-quiz/img.avif", + "usesProxy": false + }, + { + "name": "Impossible Quiz 2", + "url": "/misc/flash/index.html?swf=the-impossible-quiz-2.swf", + "image": "/misc/impossible-quiz/2.jpeg", + "usesProxy": false + }, + { + "name": "Infinite Craft", + "url": "https://neal.fun/infinite-craft/", + "image": "/img/games/inf.webp", + "usesProxy": false + }, + { + "name": "JustFall.LOL", + "url": "/misc/just-fall/index.html", + "image": "/misc/just-fall/unnamed.png", + "usesProxy": false + }, + { + "name": "KARLSON'T", + "url": "https://jankiestgame.netlify.app/", + "image": "/img/no.webp", + "usesProxy": true + }, + { + "name": "Kick the Buddy", + "url": "https://html5.gamedistribution.com/rvvASMiM/09399bfcb6e8462b873a6154b506ea99/index.html?kiz10", + "image": "https://m.media-amazon.com/images/M/MV5BYjk2YjQxNWItZTRhMy00M2UxLTkyMzQtNWRlZmUxMTJhY2Y0XkEyXkFqcGdeQXVyMTA4MjY0MzA2._V1_.jpg", + "usesProxy": true + }, + { + "name": "King Kong Kart Racing", + "url": "https://marketjs.cdn.start.gg/9pdzcjml52r3/v16/index.html", + "image": "/img/games/kkkr.webp", + "usesProxy": true + }, + { + "name": "kour.io", + "url": "https://kour.io", + "image": "/img/games/kour.webp", + "usesProxy": true + }, + { + "name": "Knife Hit", + "url": "/misc/knifehit/index.html", + "image": "/misc/knifehit/icon.png", + "usesProxy": false + }, + { + "name": "Little Alchemy", + "url": "/misc/littlealchemy/index.html", + "image": "/misc/littlealchemy/little.png", + "usesProxy": false + }, + { + "name": "Little Alchemy 2", + "url": "https://littlealchemy2.com/", + "image": "/misc/littlealchemy/2.png", + "usesProxy": true + }, + { + "name": "Leader Strike", + "url": "https://rednotsus.github.io/eaglercraft/LeaderStrike/", + "image": "/misc/leader-strike/img.jpeg", + "usesProxy": true + }, + { + "name": "Learn to Fly", + "url": "/misc/learntofly/index.html", + "image": "/misc/learn-to-fly/2.jpeg", + "usesProxy": false + }, + { + "name": "Learn to Fly 2", + "url": "/misc/flash/index.html?swf=learn-to-fly-2.swf", + "image": "/misc/learn-to-fly/1.jpeg", + "usesProxy": false + }, + { + "name": "Madalin Cars Multiplayer", + "url": "https://games.crazygames.com/en_US/madalin-cars-multiplayer/index.html", + "image": "/img/games/mcm.webp", + "usesProxy": true + }, + { + "name": "Madalin Stunt Cars 2", + "url": "https://games.crazygames.com/en_US/madalin-stunt-cars-2/index.html", + "image": "/misc/madstunt-cars2/img.jpeg", + "usesProxy": true + }, + { + "name": "Madalin Stunt Cars 3", + "url": "https://games.crazygames.com/en_US/madalin-stunt-cars-3/index.html", + "image": "/misc/madstunt-cars2/msc.jpeg", + "usesProxy": true + }, + { + "name": "Magic Tiles 3", + "url": "https://h5.4j.com/games/Magic-Tiles-3-Online/index.html", + "image": "/misc/magic-tiles/img.png", + "usesProxy": true + }, + { + "name": "Marbles Sorting", + "url": "/misc/MarblesSorting/index.html", + "image": "/misc/MarblesSorting/img.png", + "usesProxy": false + }, + { + "name": "Mario Kart", + "url": "/misc/mariokart/index.html", + "image": "/misc/mariokart/img.jpeg", + "usesProxy": false + }, + { + "name": "Melon Playground", + "url": "https://now.gg/iframe/snippet?app_pkg=com.studio27.MelonPlayground&partner=55GMS", + "image": "/misc/roblos/melon.png", + "usesProxy": true + }, + { + "name": "Minecraft 1.8", + "url": "/misc/eaglercraftx/index.html", + "image": "/misc/eaglercraftx/img.png", + "usesProxy": false + }, + { + "name": "Minesweeper", + "url": "/misc/minesweeper/index.html", + "image": "/misc/minesweeper/img/minesweeper.png", + "usesProxy": false + }, + { + "name": "MK48.io", + "url": "https://mk48.io/", + "image": "/misc/mk48/img.png", + "usesProxy": true + }, + { + "name": "Monkey Mart", + "url": "/misc/monkey-mart/index.html", + "image": "/misc/monkey-mart/img.jpeg", + "usesProxy": false + }, + { + "name": "Monster Tracks", + "url": "/misc/monster-track/index.html", + "image": "/misc/monster-track/thumb.jpg", + "usesProxy": false + }, + { + "name": "MotoX3M", + "url": "/misc/motox3m/index.html", + "image": "/misc/motox3m/splash.jpg", + "usesProxy": false + }, + { + "name": "MotoX3M Pool Party", + "url": "/misc/motox3m-pool/index.html", + "image": "/misc/motox3m-pool/splash.jpg", + "usesProxy": false + }, + { + "name": "MotoX3M Spooky", + "url": "/misc/motox3m-spooky/index.html", + "image": "/misc/motox3m-spooky/splash.jpeg", + "usesProxy": false + }, + { + "name": "MotoX3M Winter", + "url": "/misc/motox3m-winter/index.html", + "image": "/misc/motox3m-winter/download.jpeg", + "usesProxy": false + }, + { + "name": "Mr. Bullet", + "url": "/misc/mrbullet/index.html", + "image": "/misc/mrbullet/icon-256.png", + "usesProxy": false + }, + { + "name": "Microsoft Flight Sim", + "url": "/misc/msflight/index.html", + "image": "/misc/msflight/images/icon.png", + "usesProxy": false + }, + { + "name": "Mortal Kombat", + "url": "/misc/emulator/games/mortal/index.html", + "image": "/misc/emulator/games/mortal/mka.webp", + "usesProxy": false + }, + { + "name": "N Gon", + "url": "/misc/n-gon/index.html", + "image": "/misc/n-gon/img.png", + "usesProxy": false + }, + { + "name": "Nut Simulator", + "url": "/misc/nutsimulator/index.html", + "image": "/misc/nutsimulator/img.webp", + "usesProxy": false + }, + { + "name": "OSU!", + "url": "/misc/osu/index.html", + "image": "/misc/osu/osu.png", + "usesProxy": false + }, + { + "name": "OvO", + "url": "/misc/ovo/index.html", + "image": "/misc/ovo/ovo.jpeg", + "usesProxy": false + }, + { + "name": "OvO 2", + "url": "/misc/ovo2/index.html", + "image": "/misc/ovo2/icons/icon-512.png", + "usesProxy": false + }, + { + "name": "OvO 3", + "url": "/misc/ovo3/index.html", + "image": "/misc/ovo3/img.png", + "usesProxy": false + }, + { + "name": "Papas Burgeria", + "url": "/misc/papas/papas-burgeria/index.html", + "image": "/misc/papas/papas-burgeria/img.avif", + "usesProxy": false + }, + { + "name": "Papas Cupcakeria", + "url": "https://www.gameslol.net/data/waflash/index.php?g=109", + "image": "/misc/papas/papas-cupcakeria/img.jpeg", + "usesProxy": true + }, + { + "name": "Papas Donuteria", + "url": "https://files.crazygames.com/ruffle/papasdonuteria.html", + "image": "/misc/papas/papas-donuteria/img.jpeg", + "usesProxy": true + }, + { + "name": "Papas Freezeria", + "url": "https://www.coolmathgames.com/0-papas-freezeria/play", + "image": "/misc/papas/papas-freezeria/img.webp", + "usesProxy": true + }, + { + "name": "Papas Hot Doggeria", + "url": "https://www.gameslol.net/data/waflash/index.php?g=1731", + "image": "/misc/papas/papas-hot-doggeria/img.jpeg", + "usesProxy": true + }, + { + "name": "Papas Pancakeria", + "url": "https://www.coolmathgames.com/0-papas-pancakeria/play", + "image": "/misc/papas/papas-pancakeria/img.avif", + "usesProxy": true + }, + { + "name": "Papas Pasteria", + "url": "https://www.getgames.io/games/waflash/?swf=papaspastaria.swf&name=Papa%27s%20Pastaria", + "image": "/misc/papas/papas-pastaria/img.png", + "usesProxy": true + }, + { + "name": "Papas Pizzaria", + "url": "/misc/papas/papas-pizzaria/index.html", + "image": "/misc/papas/papas-pizzaria/img.avif", + "usesProxy": false + }, + { + "name": "Papas Scooperia", + "url": "https://files.crazygames.com/ruffle/papasscooperia.html", + "image": "/misc/papas/papas-scooperia/img.webp", + "usesProxy": true + }, + { + "name": "Papas Sushiria", + "url": "https://files.crazygames.com/ruffle/papassushiria.html", + "image": "/misc/papas/papas-sushiria/img.jpeg", + "usesProxy": true + }, + { + "name": "Papas Taco Mia", + "url": "https://files.crazygames.com/ruffle/papas-taco-mia/4/game.html", + "image": "/misc/papas/papas-taco-mia/img.jpeg", + "usesProxy": true + }, + { + "name": "Papas Wingeria", + "url": "https://files.crazygames.com/ruffle/papaswingeria.html", + "image": "/misc/papas/papas-wingeria/img.jpeg", + "usesProxy": true + }, + { + "name": "Paper.io 2", + "url": "/misc/paperio2/index.html", + "image": "/misc/paperio2/images/icon512.png", + "usesProxy": false + }, + { + "name": "Paper.io Teams", + "url": "https://paperio.world/paperio-teams/", + "image": "/misc/paperio2/teams.webp", + "usesProxy": true + }, + { + "name": "Papery Planes", + "url": "/misc/papery-planes/index.html", + "image": "/misc/papery-planes/splash.jpg", + "usesProxy": false + }, + { + "name": "Park Out", + "url": "/misc/park-out/index.html", + "image": "/misc/park-out/img.avif", + "usesProxy": false + }, + { + "name": "The Password Game", + "url": "https://neal.fun/password-game/", + "image": "/img/games/thepasswordgame.png", + "usesProxy": true + }, + { + "name": "Penalty Kick Online", + "url": "/misc/penalty-kick-online/index.html", + "image": "/misc/penalty-kick-online/img.png", + "usesProxy": false + }, + { + "name": "Pixel Combat 2", + "url": "https://frivez.com/games/pixel-combat-2/index.html", + "image": "/misc/pixel-combat-2/img.jpeg", + "usesProxy": true + }, + { + "name": "Pixel Shooter", + "url": "/misc/pixel-shooter/index.html", + "image": "/misc/pixel-shooter/img.jpeg", + "usesProxy": false + }, + { + "name": "Pizza Tower", + "url": "/misc/pizzatower/index.html", + "image": "/misc/pizzatower/img.png", + "usesProxy": false + }, + { + "name": "Pokemon Crystal", + "url": "/misc/emulator/pokemon/crystal/index.html", + "image": "/misc/emulator/pokemon/crystal/crystal.jpg", + "usesProxy": false + }, + { + "name": "Pokemon Emerald", + "url": "/misc/emulator/pokemon/emerald/index.html", + "image": "/misc/emulator/pokemon/emerald/img.jpeg", + "usesProxy": false + }, + { + "name": "Pokemon Ruby", + "url": "/misc/emulator/pokemon/ruby/index.html", + "image": "/misc/emulator/pokemon/ruby/pruby.jpeg", + "usesProxy": false + }, + { + "name": "Pokemon Fire Red", + "url": "/misc/emulator/pokemon/red/index.html", + "image": "/misc/emulator/pokemon/red/pred.jpeg", + "usesProxy": false + }, + { + "name": "Pokemon Sapphire", + "url": "/misc/emulator/pokemon/sapphire/index.html", + "image": "/misc/emulator/pokemon/sapphire/psapphire.jpeg", + "usesProxy": false + }, + { + "name": "Pokemon Showdown", + "url": "https://play.pokemonshowdown.com/", + "image": "/img/games/pshow.jpeg", + "usesProxy": true + }, + { + "name": "Poker", + "url": "https://www.247freepoker.com/", + "image": "/misc/poker/poker.png", + "usesProxy": true + }, + { + "name": "PooPoo.Pro [FUN]", + "url": "/misc/poopoo/index.html", + "image": "/img/no.webp", + "usesProxy": false + }, + { + "name": "Raft Wars", + "url": "/misc/RaftWars/index.html", + "image": "/misc/RaftWars/img.jpeg", + "usesProxy": false + }, + { + "name": "Raft Wars 2", + "url": "/misc/RaftWars2/index.html", + "image": "/misc/RaftWars2/img.jpeg", + "usesProxy": false + }, + { + "name": "Rainbow Tower", + "url": "https://www.mathplayground.com/mobile_rainbow_tower/index.html", + "image": "/img/games/rainbowtower.png", + "usesProxy": true + }, + { + "name": "Retro Bowl", + "url": "/misc/retro-bowl/index.html", + "image": "/misc/retro-bowl/img/icon.jpg", + "usesProxy": false + }, + { + "name": "Retro Bowl College", + "url": "/misc/retrobowlcollege/index.html", + "image": "/misc/retrobowlcollege/img.png", + "usesProxy": false + }, + { + "name": "Riddle School", + "url": "/misc/riddleschool/index.html", + "image": "/misc/riddleschool/riddleschool.png", + "usesProxy": false + }, + { + "name": "Riddle School 2", + "url": "/misc/riddleschool2/index.html", + "image": "/misc/riddleschool2/riddleschool2.png", + "usesProxy": false + }, + { + "name": "Riddle School 3", + "url": "/misc/riddleschool3/index.html", + "image": "/misc/riddleschool3/riddleschool3.png", + "usesProxy": false + }, + { + "name": "Riddle School 4", + "url": "/misc/riddleschool4/index.html", + "image": "/misc/riddleschool4/riddleschool4.png", + "usesProxy": false + }, + { + "name": "Riddle School 5", + "url": "/misc/riddleschool5/index.html", + "image": "/misc/riddleschool5/riddleschool5.png", + "usesProxy": false + }, + { + "name": "Riddle School Transfer", + "url": "/misc/riddletransfer/index.html", + "image": "/misc/riddletransfer/riddletransfer.png", + "usesProxy": false + }, + { + "name": "Riddle Transfer 2", + "url": "/misc/riddletransfer2/index.html", + "image": "/misc/riddletransfer2/riddletransfer2.png", + "usesProxy": false + }, + { + "name": "Rise Higher", + "url": "https://rednotsus.github.io/eaglercraft/risehigher/", + "image": "/misc/risehigher/128x128.png", + "usesProxy": true + }, + { + "name": "Rooftop Snipers", + "url": "/misc/rooftop-snipers/index.html", + "image": "/misc/rooftop-snipers/rooftop.avif", + "usesProxy": false + }, + { + "name": "Resent Client 1.8", + "url": "/misc/eaglercraftx/r/index.html", + "image": "/img/games/res.webp", + "usesProxy": false + }, + { + "name": "Roblox", + "url": "https://educationbluesky.com/", + "image": "/misc/roblos/rbx.jpeg", + "usesProxy": true + }, + { + "name": "Roper", + "url": "/misc/roper/index.html", + "image": "/misc/roper/img.avif", + "usesProxy": false + }, + { + "name": "Run 3", + "url": "/misc/run3/index.html", + "image": "/misc/run3/run3.avif", + "usesProxy": false + }, + { + "name": "Sandboxels", + "url": "/misc/sandboxels/index.html", + "image": "/misc/sandboxels/img.webp", + "usesProxy": false + }, + { + "name": "SandTrix", + "url": "https://files.crazygames.com/sandtrix/24/index.html", + "image": "/misc/sandtrix/img.webp", + "usesProxy": true + }, + { + "name": "Save The Doge", + "url": "/misc/save-the-doge/index.html", + "image": "/misc/save-the-doge/img.webp", + "usesProxy": false + }, + { + "name": "Shellshock.io", + "url": "https://shellshock.io", + "image": "/misc/shellshocker/img.png", + "usesProxy": true + }, + { + "name": "Ships 3D", + "url": "https://yp3d.com/ships3d/", + "image": "/misc/ships/img.webp", + "usesProxy": true + }, + { + "name": "Skribble.IO", + "url": "https://skribbl.io/", + "image": "/img/games/skribble.webp", + "usesProxy": true + }, + { + "name": "Space Company", + "url": "https://sparticle999.github.io/SpaceCompany/", + "image": "/img/games/space.webp", + "usesProxy": true + }, + { + "name": "Rocket League", + "url": "/misc/geforce-now/", + "image": "/img/games/rl.webp", + "usesProxy": false + }, + { + "name": "Sewer skater", + "url": "/misc/flash/index.html?swf=sewer-skater.swf", + "image": "/misc/slope/sewer.jpeg", + "usesProxy": false + }, + { + "name": "Slither.io", + "url": "https://slither.io/", + "image": "/misc/slither-io/img.webp", + "usesProxy": true + }, + { + "name": "Slope", + "url": "/misc/slope/index.html", + "image": "/misc/slope/slope.webp", + "usesProxy": false + }, + { + "name": "Slope 2", + "url": "/misc/slope-2/index.html", + "image": "/misc/slope-2/img.png", + "usesProxy": false + }, + { + "name": "Slowroads.io", + "url": "https://slowroads.io/", + "image": "/misc/slowroads/img.webp", + "usesProxy": true + }, + { + "name": "Slope Cyber", + "url": "/misc/slope-cyber/index.html", + "image": "/misc/slope-cyber/cyber.png", + "usesProxy": false + }, + { + "name": "Super Mario 64", + "url": "/misc/sm64/index.html", + "image": "/misc/sm64/img.png", + "usesProxy": false + }, + { + "name": "Smash Karts", + "url": "/misc/smashkarts/index.html", + "image": "/misc/smashkarts/img.jpeg", + "usesProxy": false + }, + { + "name": "Snow Rider 3D", + "url": "/misc/SnowRider3D/index.html", + "image": "misc/SnowRider3D/img.webp", + "usesProxy": false + }, + { + "name": "Soccer Bros", + "url": "https://soccerbros.gg/?cg=1", + "image": "/img/games/SoccerBros.webp", + "usesProxy": true + }, + { + "name": "Soccer Random", + "url": "/misc/soccer-random/index.html", + "image": "misc/soccer-random/img.jpeg", + "usesProxy": false + }, + { + "name": "Sonic Battle", + "url": "/misc/sonicbattle/index.html", + "image": "/misc/sonicbattle/img.png", + "usesProxy": false + }, + { + "name": "Stickman Boost", + "url": "/misc/stickman-boost/index.html", + "image": "misc/stickman-boost/img.webp", + "usesProxy": false + }, + { + "name": "Stickman Golf", + "url": "/misc/stickman-golf/index.html", + "image": "/misc/stickman-golf/splash.png", + "usesProxy": false + }, + { + "name": "Stickman Hook", + "url": "/misc/stickman-hook/index.html", + "image": "/misc/stickman-hook/unnamed.webp", + "usesProxy": false + }, + { + "name": "Stumble Guys", + "url": "https://www.stumbleguys.com/play", + "image": "/misc/stumbleguys/img.jpeg", + "usesProxy": true + }, + { + "name": "Street Fighter 2", + "url": "/misc/emulator/games/street/index.html", + "image": "/misc/emulator/games/street/sf2.webp", + "usesProxy": false + }, + { + "name": "Street Fighter 3", + "url": "/misc/emulator/games/street/3/index.html", + "image": "/misc/emulator/games/street/3/sf3.webp", + "usesProxy": false + }, + { + "name": "Subway Surfers", + "url": "/misc/subway-surfers/index.html", + "image": "/misc/subway-surfers/NewYorkIcon.png", + "usesProxy": false + }, + { + "name": "Sugar Sugar", + "url": "https://images-opensocial.googleusercontent.com/gadgets/ifr?url=https://s3.amazonaws.com/production-assetsbucket-8ljvyr1xczmb/1ee20621-61bc-4ec8-a8ec-5e839c2e6edc%2Fsugar-sugar.xml", + "image": "/misc/sugarsugar/img.png", + "usesProxy": true + }, + { + "name": "Sugar Sugar 2", + "url": "https://files.crazygames.com/ruffle/sugarsugar2.html", + "image": "/misc/sugarsugar2/img.png", + "usesProxy": true + }, + { + "name": "Sugar Sugar 3", + "url": "https://www.coolmathgames.com/0-sugar-sugar-3/play", + "image": "/misc/sugarsugar3/img.jpeg", + "usesProxy": true + }, + { + "name": "Suika Watermelon", + "url": "https://suikagame.io/game/suika-game/", + "image": "/misc/sukiawatermelon/img.webp", + "usesProxy": true + }, + { + "name": "Superhot", + "url": "/misc/superhot/index.html", + "image": "/misc/superhot/hot.jpg", + "usesProxy": false + }, + { + "name": "Super Smash Bros", + "url": "/misc/supersmashbros/index.html", + "image": "/misc/supersmashbros/logo.jpg", + "usesProxy": false + }, + { + "name": "Super Mario Bros", + "url": "/misc/smb/index.html", + "image": "/misc/smb/icon.png", + "usesProxy": false + }, + { + "name": "Super Mario Bros Advanced", + "url": "/misc/emulator/games/marioBros/index.html", + "image": "/misc/emulator/games/marioBros/1.webp", + "usesProxy": false + }, + { + "name": "Super Mario Bros 2", + "url": "/misc/emulator/games/marioBros/2/index.html", + "image": "/misc/emulator/games/marioBros/2/2.webp", + "usesProxy": false + }, + { + "name": "Super Mario Bros 3", + "url": "/misc/emulator/games/marioBros/3/index.html", + "image": "/misc/emulator/games/marioBros/3/3.webp", + "usesProxy": false + }, + { + "name": "Super Mario Bros 4", + "url": "/misc/emulator/games/marioBros/4/index.html", + "image": "/misc/emulator/games/marioBros/4/img.jpeg", + "usesProxy": false + }, + { + "name": "Table Tennis: WT", + "url": "/misc/tabletennisworldtour/index.html", + "image": "/misc/tabletennisworldtour/img.jpeg", + "usesProxy": false + }, + { + "name": "TABS", + "url": "/misc/tabs/index.html", + "image": "/misc/tabs/img.png", + "usesProxy": false + }, + { + "name": "Takuni Sunset", + "url": "https://watchdocumentaries.com/wp-content/uploads/games/tanuki-sunset", + "image": "/misc/Tanuki-Sunset/img.png", + "usesProxy": true + }, + { + "name": "Teenage Mutant Ninja Turtles", + "url": "/misc/emulator/games/thmt/index.html", + "image": "/misc/emulator/games/thmt/tmnt.webp", + "usesProxy": false + }, + { + "name": "Team Fortress 2", + "url": "https://play.geforcenow.com/games?game-id=40512534-ad27-4a12-afa7-6fc412288072&lang=en_US&asset-id=01_547b2064-13ad-4ba5-b928-d2770accddf1", + "image": "/misc/teamfortress2/img.webp", + "usesProxy": true + }, + { + "name": "Territorial.io", + "url": "https://territorial.io/", + "image": "/misc/Territorial.io/img.jpeg", + "usesProxy": true + }, + { + "name": "Tetris", + "url": "/misc/flash/index.html?swf=tetris.swf", + "image": "/misc/tetris/flashtetris.webp", + "usesProxy": false + }, + { + "name": "The Binding Of Issac", + "url": "/misc/flash/index.html?swf=thebindingofisaac.swf", + "image": "/misc/thebindingofissac/img.webp", + "usesProxy": false + }, + { + "name": "There Is No Game", + "url": "/misc/thereisnogame/index.html", + "image": "/misc/thereisnogame/img.png", + "usesProxy": false + }, + { + "name": "Time Shooter 1", + "url": "/misc/time-shooter1/index.html", + "image": "/misc/time-shooter1/img.jpeg", + "usesProxy": false + }, + { + "name": "Time Shooter 2", + "url": "/misc/time-shooter2/index.html", + "image": "/misc/time-shooter2/img.png", + "usesProxy": false + }, + { + "name": "Tiny Fishing", + "url": "/misc/tiny-fishing/index.html", + "image": "/misc/tiny-fishing/thumb.webp", + "usesProxy": false + }, + { + "name": "Toca Life World", + "url": "https://now.gg/iframe/snippet?app_pkg=com.tocaboca.tocalifeworld&partner=55gms", + "image": "/img/games/toca.webp", + "usesProxy": true + }, + { + "name": "Tom Hawks Sk8land", + "url": "/misc/emulator/games/thas/index.html", + "image": "/misc/emulator/games/thas/thas.webp", + "usesProxy": false + }, + { + "name": "Toss The Turtle", + "url": "https://toss-the-turtle.game-files.crazygames.com/ruffle/tosstheturtle.html?czyExpInstantFun=disabled&v=1.277", + "image": "/img/games/turtle.webp", + "usesProxy": true + }, + { + "name": "Traffic Rider", + "url": "/misc/traffic-rider/index.html", + "image": "/misc/traffic-rider/img.webp", + "usesProxy": false + }, + { + "name": "Travle", + "url": "https://travle.earth/", + "image": "/misc/travle/img.png", + "usesProxy": true + }, + { + "name": "Tunnel Rush", + "url": "/misc/tunnel-rush/index.html", + "image": "/misc/tunnel-rush/img/tunnel.jpg", + "usesProxy": false + }, + { + "name": "Tunnel Rush 2", + "url": "/misc/tunnelrush2/index.html", + "image": "/misc/tunnelrush2/img.jpeg", + "usesProxy": false + }, + { + "name": "Twitch Tetris", + "url": "/misc/twitchtetris/index.html", + "image": "/misc/twitchtetris/logo.png", + "usesProxy": false + }, + { + "name": "Unfair Mario", + "url": "/misc/unfair-mario/index.html", + "image": "/misc/unfair-mario/img.jpeg", + "usesProxy": false + }, + { + "name": "Universal Paperclips", + "url": "/misc/universal-paperclips/index.html", + "image": "/misc/universal-paperclips/img.webp", + "usesProxy": false + }, + { + "name": "Venge.io", + "url": "https://venge.io/", + "image": "/misc/venge-io/img.jpeg", + "usesProxy": true + }, + { + "name": "Vex 3", + "url": "/misc/vex3/index.html", + "image": "/misc/vex3/vex3.jpeg", + "usesProxy": false + }, + { + "name": "Vex 4", + "url": "/misc/vex4/index.html", + "image": "/misc/vex4/vex4.webp", + "usesProxy": false + }, + { + "name": "Vex 5", + "url": "/misc/vex5/index.html", + "image": "/misc/vex5/vex5.jpg", + "usesProxy": false + }, + { + "name": "Vex 6", + "url": "/misc/vex6/index.html", + "image": "/misc/vex6/assets/icon.jpeg", + "usesProxy": false + }, + { + "name": "Vex 7", + "url": "/misc/vex7/index.html", + "image": "/misc/vex7/assets/icon.png", + "usesProxy": false + }, + { + "name": "Vex 8", + "url": "/misc/vex8/index.html", + "image": "/misc/vex8/assets/icon.png", + "usesProxy": false + }, + { + "name": "Volley Random", + "url": "/misc/volley-random/index.html", + "image": "/misc/volley-random/img.png", + "usesProxy": false + }, + { + "name": "WBWWB", + "url": "/misc/webecomewhatwebehold/index.html", + "image": "/misc/webecomewhatwebehold/img.avif", + "usesProxy": false + }, + { + "name": "Whack Your Boss", + "url": "/misc/flash/index.html?swf=whack-your-boss-24.swf", + "image": "/misc/flash/img/1.jpg", + "usesProxy": false + }, + { + "name": "Whack Your Computer", + "url": "/misc/flash/index.html?swf=whack_your_computer_12_ways.swf", + "image": "/misc/flash/img/wyc.png", + "usesProxy": false + }, + { + "name": "Whack Your Ex", + "url": "/misc/flash/index.html?swf=whack-your-ex.swf", + "image": "/misc/flash/img/wyx.png", + "usesProxy": false + }, + { + "name": "Wheely 2", + "url": "/misc/wheely2/index.html", + "image": "/misc/wheely2/img.png", + "usesProxy": false + }, + { + "name": "Wheely 3", + "url": "/misc/wheely3/index.html", + "image": "/misc/wheely3/img.png", + "usesProxy": false + }, + { + "name": "Wheely 4", + "url": "/misc/wheely4/index.html", + "image": "/misc/wheely4/img.png", + "usesProxy": false + }, + { + "name": "Wheely 5", + "url": "/misc/wheely5/index.html", + "image": "/misc/wheely5/img.png", + "usesProxy": false + }, + { + "name": "Wheely 6", + "url": "/misc/wheely6/index.html", + "image": "/misc/wheely6/img.png", + "usesProxy": false + }, + { + "name": "Wheely 7", + "url": "/misc/wheely7/index.html", + "image": "/misc/wheely7/img.png", + "usesProxy": false + }, + { + "name": "Wheely 8", + "url": "/misc/wheely8/index.html", + "image": "/misc/wheely8/img.png", + "usesProxy": false + }, + { + "name": "Wordle", + "url": "/misc/wordle/index.html", + "image": "/misc/wordle/img/logo_512x512.png", + "usesProxy": false + }, + { + "name": "Worlds Hardest Game", + "url": "/misc/worldshardestgame/index.html", + "image": "/misc/worldshardestgame/img.jpeg", + "usesProxy": false + }, + { + "name": "Worlds Hardest Game 2", + "url": "/misc/flash/index.html?swf=worlds-hardest-game-2.swf", + "image": "/misc/worldshardestgame/img.jpeg", + "usesProxy": false + }, + { + "name": "Yohoho.io", + "url": "/misc/yohoho/index.html", + "image": "/misc/yohoho/favicon/android-chrome-512x512.png", + "usesProxy": false + }, + { + "name": "Zelda: The Minish Cap", + "url": "/misc/emulator/games/zelda/minish/index.html", + "image": "/misc/emulator/games/zelda/minish/minish.jpeg", + "usesProxy": false + }, + { + "name": "Zelda: Link to the Past", + "url": "/misc/emulator/games/zelda/index.html", + "image": "/misc/emulator/games/zelda/zelda.webp", + "usesProxy": false + } +]