Skip to content

Instantly share code, notes, and snippets.

@flexbox
Last active April 15, 2023 09:09
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save flexbox/f94b2d8795a339de5ae97cdbb8418fc6 to your computer and use it in GitHub Desktop.
Save flexbox/f94b2d8795a339de5ae97cdbb8418fc6 to your computer and use it in GitHub Desktop.
// 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());
@rangelrmorais
Copy link

In Brazil you need to change "[a-label="Like"]" to "[a-label="Curti"]".

Maybe in other languages you need to use the specific term. If i doesnt work, inspect the element and see what works for your language.

@baptx
Copy link

baptx commented May 21, 2020

Note that even if it seems useful, using a script to like everybody is not recommended since it can impact your rating and result in a shadowban: https://www.swipehelper.com/2018/09/23/secret-rules-tinder-algorithm-how-to-improve-score-more-matches/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment