Created
May 2, 2022 17:32
-
-
Save lc-nyovchev/0a13dc9bb16cf8e061b5b8107934890b to your computer and use it in GitHub Desktop.
twitch-scores.js
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
setInterval(() => { | |
console.log('Checking for points...') | |
const button = document.querySelector('.community-points-summary .tw-transition button') | |
if (button) { | |
button.click() | |
console.log('Juicy points!') | |
} | |
}, 10000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Allows to collect twitch special points without having to click them.