Last active
April 11, 2017 20:26
-
-
Save jeanlucaslima/23978d0641fda2b7b72df87c0bdc95dd to your computer and use it in GitHub Desktop.
Liker for Tinder web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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