File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
// @version ${version}
5
5
// @description Proof-Of-Concept for a cheat for higher lower game.
6
6
// @author Lyzev
7
- // @match http ://www.higherlowergame.com/
7
+ // @match * ://www.higherlowergame.com/
8
8
// @icon https://www.google.com/s2/favicons?sz=64&domain=higherlowergame.com
9
9
// @require https://openuserjs.org/src/libs/sizzle/GM_config.js
10
10
// @grant GM_getValue
@@ -83,7 +83,7 @@ const loop = setInterval(() => {
83
83
84
84
function setup ( ) {
85
85
const request = new XMLHttpRequest ( )
86
- request . open ( "GET" , "http: //www.higherlowergame.com/questions/get/general" , false )
86
+ request . open ( "GET" , "//www.higherlowergame.com/questions/get/general" , false )
87
87
request . send ( )
88
88
const data = JSON . parse ( request . responseText )
89
89
for ( let i = 0 ; i < data . length ; i ++ ) {
@@ -138,4 +138,4 @@ function startAutoMode() {
138
138
}
139
139
} , GM_config . get ( "Delay" ) )
140
140
} , 2000 )
141
- }
141
+ }
You can’t perform that action at this time.
0 commit comments