Skip to content

Instantly share code, notes, and snippets.

@jeanlucaslima
Last active April 11, 2017 20:26
Liker for Tinder web
// The main idea here is to just play with the UI of Tinder Web.
// Not sure if this causes some kind of filtering if you use scripts like this.
var like = function() {
document.querySelectorAll('button')[2].click();
setTimeout(like, 100) // adjust the time to whatever you would like
}
like();
// Future work: deal with interruptions (like matching)
// Detect when you cannot like anymore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment