reaper-arcade-hub 2.0.7 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/app.js +4 -26
- package/main/js/app.js +4 -26
- package/package.json +2 -2
package/js/app.js
CHANGED
|
@@ -1932,7 +1932,7 @@ class ReaperHubApp {
|
|
|
1932
1932
|
|
|
1933
1933
|
const filename = game.url.split('/').pop();
|
|
1934
1934
|
iframe.removeAttribute('srcdoc');
|
|
1935
|
-
iframe.src = `https://
|
|
1935
|
+
iframe.src = `https://gn-math.github.io/html/${filename}`;
|
|
1936
1936
|
|
|
1937
1937
|
setTimeout(() => {
|
|
1938
1938
|
try {
|
|
@@ -1979,23 +1979,10 @@ class ReaperHubApp {
|
|
|
1979
1979
|
const filename = this.currentGame.url.split('/').pop();
|
|
1980
1980
|
const gameName = this.currentGame.name;
|
|
1981
1981
|
const siteUrl = window.location.href;
|
|
1982
|
+
const gameUrl = `https://gn-math.github.io/html/${filename}`;
|
|
1982
1983
|
const win = window.open('about:blank', '_blank');
|
|
1983
1984
|
if (win) {
|
|
1984
1985
|
const doc = win.document;
|
|
1985
|
-
doc.title = "Home - Google Classroom";
|
|
1986
|
-
|
|
1987
|
-
let gameHtml = '';
|
|
1988
|
-
try {
|
|
1989
|
-
const res = await fetch(`https://raw.githubusercontent.com/gn-math/html/main/${filename}`);
|
|
1990
|
-
if (res.ok) {
|
|
1991
|
-
gameHtml = await res.text();
|
|
1992
|
-
if (gameHtml && gameHtml.length > 50) {
|
|
1993
|
-
gameHtml = gameHtml.replace(/https?:\/\/cdn\.jsdelivr\.net\/gh\//g, 'https://fastly.jsdelivr.net/gh/');
|
|
1994
|
-
gameHtml = gameHtml.replace(/https?:\/\/cdn\.jsdelivr\.net\/npm\//g, 'https://fastly.jsdelivr.net/npm/');
|
|
1995
|
-
}
|
|
1996
|
-
}
|
|
1997
|
-
} catch (e) {}
|
|
1998
|
-
|
|
1999
1986
|
doc.open();
|
|
2000
1987
|
doc.write(`
|
|
2001
1988
|
<!DOCTYPE html>
|
|
@@ -2030,10 +2017,6 @@ class ReaperHubApp {
|
|
|
2030
2017
|
pointer-events: none; user-select: none;
|
|
2031
2018
|
}
|
|
2032
2019
|
</style>
|
|
2033
|
-
<script>
|
|
2034
|
-
// Client-Side Ad & Pop-up Blocker
|
|
2035
|
-
window.open = function() { console.log('[REAPER SHIELD] Ad pop-up blocked'); return null; };
|
|
2036
|
-
<\/script>
|
|
2037
2020
|
</head>
|
|
2038
2021
|
<body>
|
|
2039
2022
|
<div class="reaper-bar">
|
|
@@ -2042,18 +2025,13 @@ class ReaperHubApp {
|
|
|
2042
2025
|
<button onclick="document.getElementById('game-frame').contentWindow.location.reload()" class="btn-action">🔄 RELOAD</button>
|
|
2043
2026
|
</div>
|
|
2044
2027
|
<div class="reaper-watermark">REAPER HUB</div>
|
|
2045
|
-
<iframe id="game-frame" allow="autoplay; fullscreen; gamepad; focus-without-user-activation; pointer-lock"
|
|
2028
|
+
<iframe id="game-frame" src="${gameUrl}" allow="autoplay; fullscreen; gamepad; focus-without-user-activation; pointer-lock"></iframe>
|
|
2046
2029
|
</body>
|
|
2047
2030
|
</html>
|
|
2048
2031
|
`);
|
|
2049
2032
|
doc.close();
|
|
2050
2033
|
|
|
2051
|
-
|
|
2052
|
-
const f = doc.getElementById('game-frame');
|
|
2053
|
-
if (f) f.srcdoc = this.cleanAndOptimizeGameHTML(gameHtml);
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
this.showToast("Game opened in about:blank tab with watermark & return controls.");
|
|
2034
|
+
this.showToast("Game opened in disguised about:blank tab.");
|
|
2057
2035
|
}
|
|
2058
2036
|
}
|
|
2059
2037
|
|
package/main/js/app.js
CHANGED
|
@@ -1932,7 +1932,7 @@ class ReaperHubApp {
|
|
|
1932
1932
|
|
|
1933
1933
|
const filename = game.url.split('/').pop();
|
|
1934
1934
|
iframe.removeAttribute('srcdoc');
|
|
1935
|
-
iframe.src = `https://
|
|
1935
|
+
iframe.src = `https://gn-math.github.io/html/${filename}`;
|
|
1936
1936
|
|
|
1937
1937
|
setTimeout(() => {
|
|
1938
1938
|
try {
|
|
@@ -1979,23 +1979,10 @@ class ReaperHubApp {
|
|
|
1979
1979
|
const filename = this.currentGame.url.split('/').pop();
|
|
1980
1980
|
const gameName = this.currentGame.name;
|
|
1981
1981
|
const siteUrl = window.location.href;
|
|
1982
|
+
const gameUrl = `https://gn-math.github.io/html/${filename}`;
|
|
1982
1983
|
const win = window.open('about:blank', '_blank');
|
|
1983
1984
|
if (win) {
|
|
1984
1985
|
const doc = win.document;
|
|
1985
|
-
doc.title = "Home - Google Classroom";
|
|
1986
|
-
|
|
1987
|
-
let gameHtml = '';
|
|
1988
|
-
try {
|
|
1989
|
-
const res = await fetch(`https://raw.githubusercontent.com/gn-math/html/main/${filename}`);
|
|
1990
|
-
if (res.ok) {
|
|
1991
|
-
gameHtml = await res.text();
|
|
1992
|
-
if (gameHtml && gameHtml.length > 50) {
|
|
1993
|
-
gameHtml = gameHtml.replace(/https?:\/\/cdn\.jsdelivr\.net\/gh\//g, 'https://fastly.jsdelivr.net/gh/');
|
|
1994
|
-
gameHtml = gameHtml.replace(/https?:\/\/cdn\.jsdelivr\.net\/npm\//g, 'https://fastly.jsdelivr.net/npm/');
|
|
1995
|
-
}
|
|
1996
|
-
}
|
|
1997
|
-
} catch (e) {}
|
|
1998
|
-
|
|
1999
1986
|
doc.open();
|
|
2000
1987
|
doc.write(`
|
|
2001
1988
|
<!DOCTYPE html>
|
|
@@ -2030,10 +2017,6 @@ class ReaperHubApp {
|
|
|
2030
2017
|
pointer-events: none; user-select: none;
|
|
2031
2018
|
}
|
|
2032
2019
|
</style>
|
|
2033
|
-
<script>
|
|
2034
|
-
// Client-Side Ad & Pop-up Blocker
|
|
2035
|
-
window.open = function() { console.log('[REAPER SHIELD] Ad pop-up blocked'); return null; };
|
|
2036
|
-
<\/script>
|
|
2037
2020
|
</head>
|
|
2038
2021
|
<body>
|
|
2039
2022
|
<div class="reaper-bar">
|
|
@@ -2042,18 +2025,13 @@ class ReaperHubApp {
|
|
|
2042
2025
|
<button onclick="document.getElementById('game-frame').contentWindow.location.reload()" class="btn-action">🔄 RELOAD</button>
|
|
2043
2026
|
</div>
|
|
2044
2027
|
<div class="reaper-watermark">REAPER HUB</div>
|
|
2045
|
-
<iframe id="game-frame" allow="autoplay; fullscreen; gamepad; focus-without-user-activation; pointer-lock"
|
|
2028
|
+
<iframe id="game-frame" src="${gameUrl}" allow="autoplay; fullscreen; gamepad; focus-without-user-activation; pointer-lock"></iframe>
|
|
2046
2029
|
</body>
|
|
2047
2030
|
</html>
|
|
2048
2031
|
`);
|
|
2049
2032
|
doc.close();
|
|
2050
2033
|
|
|
2051
|
-
|
|
2052
|
-
const f = doc.getElementById('game-frame');
|
|
2053
|
-
if (f) f.srcdoc = this.cleanAndOptimizeGameHTML(gameHtml);
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
this.showToast("Game opened in about:blank tab with watermark & return controls.");
|
|
2034
|
+
this.showToast("Game opened in disguised about:blank tab.");
|
|
2057
2035
|
}
|
|
2058
2036
|
}
|
|
2059
2037
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reaper-arcade-hub",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Reaper Hub -
|
|
3
|
+
"version": "2.0.8",
|
|
4
|
+
"description": "Reaper Hub - High-Speed 788-Game Arcade Engine (Official GitHub Pages CDN Endpoint), Strict Key Gatekeeper, Security Shield, Realtime Chat & Working Game Engine",
|
|
5
5
|
"main": "main/index.html",
|
|
6
6
|
"unpkg": "main/index.html",
|
|
7
7
|
"jsdelivr": "main/index.html",
|