Skip to content

Instantly share code, notes, and snippets.

@luan0ap
Last active March 15, 2022 14:33
Show Gist options
  • Save luan0ap/513937a36c06757697c612c2734a0cfe to your computer and use it in GitHub Desktop.
Save luan0ap/513937a36c06757697c612c2734a0cfe to your computer and use it in GitHub Desktop.
Auto click script for Binance #BitcoinButton. See: https://www.binance.com/en/activity/bitcoin-button-game
const getRich = async () => {
const p = () => new Promise(resolve => setTimeout(() => resolve(), 100))
// improve it :v
while (true) {
await p()
const $btn = document.querySelector('.css-86uttc')
$btn.click()
}
}
getRich()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment