Skip to content

Instantly share code, notes, and snippets.

@atomofiron
Last active October 17, 2023 12:21
Show Gist options
  • Save atomofiron/e853aa5cde347eea5e0884462af58512 to your computer and use it in GitHub Desktop.
Save atomofiron/e853aa5cde347eea5e0884462af58512 to your computer and use it in GitHub Desktop.
Twitch auto earn
function checkPointsButton() {
let points = document.getElementsByClassName('community-points-summary')
let btn = points[0].getElementsByTagName('button')[1]
if (btn !== undefined) {
btn.click()
console.log("points were earned")
} else
console.log("no points")
}
let interval = setInterval(checkPointsButton, 5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment