Created
October 11, 2019 16:26
-
-
Save t510599/f9d1f8a161fd578d34e8ca3bfd393c2d to your computer and use it in GitHub Desktop.
ani.gamer.com.tw skip ad
This file contains 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
async function sleep(ms) { | |
return new Promise((res, rej) => { | |
setTimeout(() => { res() }, ms); | |
}); | |
} | |
(async () => { | |
$('#adult').click(); | |
await sleep(500); | |
$('.vast-skip-button').addClass('enabled'); | |
await sleep(5000); | |
$('.vast-skip-button').click(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sleep(5000)
或許可以縮短一點