Skip to content

Commit a5ecb41

Browse files
committed
Now.GG Proxy Block Fix (#552)
1 parent 4000ecc commit a5ecb41

File tree

2 files changed

+42
-74
lines changed

2 files changed

+42
-74
lines changed

static/assets/scripts/frame.js

+41-73
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const iframe = document.getElementById('ifra')
2-
32
window.addEventListener('resize', navigator.keyboard.lock(['Escape']))
43
// Decode URL
54
function decodeXor(input) {
@@ -22,9 +21,11 @@ function iframeLoad() {
2221
} else if (website.includes('/a/')) {
2322
const website = iframe.contentWindow?.location.href.replace(window.location.origin, '').replace('/a/', '')
2423
document.getElementById('is').value = decodeXor(website)
24+
localStorage.setItem('decoded', decodeXor(website));
2525
} else if (website.includes('/a/q/')) {
2626
const website = iframe.contentWindow?.location.href.replace(window.location.origin, '').replace('/a/q/', '')
2727
document.getElementById('is').value = decodeXor(website)
28+
localStorage.setItem('decoded', decodeXor(website));
2829
}
2930
}
3031
}
@@ -138,78 +139,45 @@ document.addEventListener('fullscreenchange', function () {
138139
document.body.classList.toggle('fullscreen', isFullscreen)
139140
})
140141
// Now
141-
var adjustmentCompleted = false
142-
var attempts = 0
143-
144-
function adjustElements() {
145-
if (adjustmentCompleted) {
146-
return true
147-
}
148-
149-
var iframe = top.document.getElementById('ifra')
150-
151-
if (iframe) {
152-
var innerDoc = iframe.contentWindow.document
153-
154-
var roblox = innerDoc.getElementById('js-game-video')
155-
var controlBar = innerDoc.getElementById('ng-control-bar')
156-
157-
if (roblox && controlBar) {
158-
roblox.style.top = '415px'
159-
controlBar.style.top = '91%'
160-
161-
return true
162-
} else {
163-
return false
142+
const key = ['nowgg', 'now.gg'];
143+
const decoded = localStorage.getItem('decoded');
144+
145+
if (decoded) {
146+
let found = false;
147+
for (const keyword of key) {
148+
if (decoded.includes(keyword)) {
149+
console.log(`${keyword} found`);
150+
found = true;
151+
break;
152+
}
164153
}
165-
} else {
166-
return false
167-
}
168-
}
169-
170-
function CheckAndAdjust() {
171-
var intervalId = setInterval(function () {
172-
attempts++
173-
if (adjustElements()) {
174-
clearInterval(intervalId)
175-
} else if (attempts >= 30) {
176-
clearInterval(intervalId)
154+
if (found) {
155+
let count = 0;
156+
let notfound = 0;
157+
const limit = 10;
158+
const max = 35;
159+
const reloadInterval = setInterval(() => {
160+
if (count < limit && iframe) {
161+
const iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
162+
const element = iframeDocument.querySelector('.sc-hGPBjI.gGkQpt');
163+
if (element) {
164+
console.log("Unsafe proxy or VPN detected. Reloading...");
165+
iframe.contentWindow.location.reload();
166+
count++;
167+
notfound = 0;
168+
} else {
169+
console.log("Class not found inside the iframe.");
170+
notfound++;
171+
if (notfound >= max) {
172+
console.log(`Class not found for ${max} consecutive checks. Stopping.`);
173+
clearInterval(reloadInterval);
174+
}
175+
}
176+
} else {
177+
clearInterval(reloadInterval);
178+
}
179+
}, 500);
177180
}
178-
}, 5000)
179-
}
180-
181-
function adjust() {
182-
setInterval(function () {
183-
var iframe = top.document.getElementById('ifra')
184-
185-
if (iframe) {
186-
var innerDoc = iframe.contentWindow.document
187-
188-
var roblox = innerDoc.getElementById('js-game-video')
189-
var controlBar = innerDoc.getElementById('ng-control-bar')
190-
var customClassElement = innerDoc.querySelector('.sc-rUGft.hLgqJJ')
191-
192-
if (roblox) {
193-
checkAndAdjustStyles(roblox, 'top', ['415px'])
194-
}
195-
196-
if (controlBar) {
197-
checkAndAdjustStyles(controlBar, 'top', ['91%'])
198-
}
199-
200-
if (customClassElement) {
201-
customClassElement.remove()
202-
}
203-
}
204-
}, 3000)
205-
}
206-
207-
function checkAndAdjustStyles(element, property, targetValues) {
208-
if (element) {
209-
var currentStyle = window.getComputedStyle(element)[property]
210-
211-
if (!targetValues.includes(currentStyle)) {
212-
element.style[property] = targetValues[0]
213-
}
214-
}
181+
} else {
182+
console.log('Decoded not found in localStorage.');
215183
}

static/go.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
></iframe
6161
>
6262
<script src="assets/scripts/index.js?v=9"></script>
63-
<script src="assets/scripts/frame.js?v=16"></script>
63+
<script src="assets/scripts/frame.js?v=19"></script>
6464
<script src="./m/bundle.js?v=4"></script>
6565
<script src="./m/config.js?v=3"></script>
6666
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>

0 commit comments

Comments
 (0)