Skip to content

Instantly share code, notes, and snippets.

@jeanlucaslima
Last active April 11, 2017 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeanlucaslima/23978d0641fda2b7b72df87c0bdc95dd to your computer and use it in GitHub Desktop.
Save jeanlucaslima/23978d0641fda2b7b72df87c0bdc95dd to your computer and use it in GitHub Desktop.
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