Skip to content

Instantly share code, notes, and snippets.

@blackavec
Created October 14, 2018 13:48
Show Gist options
  • Save blackavec/433caece0fca84892d50d772160c9335 to your computer and use it in GitHub Desktop.
Save blackavec/433caece0fca84892d50d772160c9335 to your computer and use it in GitHub Desktop.
tinder autoliker script
/*
copy the following script in the browser on tinder page.
and then run the following method.
$ start(300)
*/
function likeIt () {
document.querySelectorAll('button[aria-label="Like"]')[0].click()
}
function start (likeTime = 1000) {
window.timer = setInterval(likeIt, likeTime)
}
function stop () {
clearInterval(window.timer)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment