Created
January 5, 2022 13:31
-
-
Save book000/9c67d52268e2fb56e14117e8ed89f606 to your computer and use it in GitHub Desktop.
Gartic Phoneダウンロード自動化?Chrome推奨
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isFound = false; | |
setInterval(() => { | |
console.log("checking", isFound) | |
if(document.querySelector("i.download") !== null) { | |
console.log("found & click") | |
if(!isFound) document.querySelector("i.download").click(); | |
isFound = true; | |
}else{ | |
isFound = false | |
} | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment