Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Created November 7, 2020 22:14
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 matheusmurta/5324db8631e9c4f7dcf9070e87fb5577 to your computer and use it in GitHub Desktop.
Save matheusmurta/5324db8631e9c4f7dcf9070e87fb5577 to your computer and use it in GitHub Desktop.
Tinder Auto Like Javascript
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