Skip to content

Instantly share code, notes, and snippets.

@book000
Created January 5, 2022 13:31
Show Gist options
  • Save book000/9c67d52268e2fb56e14117e8ed89f606 to your computer and use it in GitHub Desktop.
Save book000/9c67d52268e2fb56e14117e8ed89f606 to your computer and use it in GitHub Desktop.
Gartic Phoneダウンロード自動化?Chrome推奨
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