Skip to content

Instantly share code, notes, and snippets.

@bKNN
Last active November 12, 2018 11:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bKNN/6e8fcd819f1be1a587dbc7f7711f26a0 to your computer and use it in GitHub Desktop.
Save bKNN/6e8fcd819f1be1a587dbc7f7711f26a0 to your computer and use it in GitHub Desktop.
GROWTHHCKNG - Automation for https://tinder.com/app/matches
// Copy paste this script on your console
var disabled = false;
var r = confirm('Start the Autolike on this page?');
var min_time_to_decide = 300;
var max_additional_time_to_decide = 1000;
var time_to_decide = function() {
additional_time_to_decide = Math.floor(Math.random() * max_additional_time_to_decide);
return min_time_to_decide + additional_time_to_decide;
}
var like_that_ass = function() {
if (!disabled) {
if (r == true) {
document.querySelector('[aria-label="Like"]').click();
console.log('❤️ like');
};
setTimeout(like_that_ass, time_to_decide());
};
}
setTimeout(like_that_ass, time_to_decide());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment