Created
November 7, 2020 22:14
-
-
Save matheusmurta/5324db8631e9c4f7dcf9070e87fb5577 to your computer and use it in GitHub Desktop.
Tinder Auto Like Javascript
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
var confirmBox = confirm('Start swiping right?'); | |
var count = 1; | |
var like = function(){ | |
if (confirmBox){ | |
document.querySelector('[aria-label="Gosto"]').click(); //translate you country inspect the button | |
console.log('Liked ' + count); count++; }; | |
setTimeout(like, 100); | |
}; | |
setTimeout(like, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment