1
1
const iframe = document . getElementById ( 'ifra' )
2
-
3
2
window . addEventListener ( 'resize' , navigator . keyboard . lock ( [ 'Escape' ] ) )
4
3
// Decode URL
5
4
function decodeXor ( input ) {
@@ -22,9 +21,11 @@ function iframeLoad() {
22
21
} else if ( website . includes ( '/a/' ) ) {
23
22
const website = iframe . contentWindow ?. location . href . replace ( window . location . origin , '' ) . replace ( '/a/' , '' )
24
23
document . getElementById ( 'is' ) . value = decodeXor ( website )
24
+ localStorage . setItem ( 'decoded' , decodeXor ( website ) ) ;
25
25
} else if ( website . includes ( '/a/q/' ) ) {
26
26
const website = iframe . contentWindow ?. location . href . replace ( window . location . origin , '' ) . replace ( '/a/q/' , '' )
27
27
document . getElementById ( 'is' ) . value = decodeXor ( website )
28
+ localStorage . setItem ( 'decoded' , decodeXor ( website ) ) ;
28
29
}
29
30
}
30
31
}
@@ -138,78 +139,45 @@ document.addEventListener('fullscreenchange', function () {
138
139
document . body . classList . toggle ( 'fullscreen' , isFullscreen )
139
140
} )
140
141
// 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
+ }
164
153
}
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 ) ;
177
180
}
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.' ) ;
215
183
}
0 commit comments