Created
October 14, 2018 13:48
-
-
Save blackavec/433caece0fca84892d50d772160c9335 to your computer and use it in GitHub Desktop.
tinder autoliker script
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
/* | |
copy the following script in the browser on tinder page. | |
and then run the following method. | |
$ start(300) | |
*/ | |
function likeIt () { | |
document.querySelectorAll('button[aria-label="Like"]')[0].click() | |
} | |
function start (likeTime = 1000) { | |
window.timer = setInterval(likeIt, likeTime) | |
} | |
function stop () { | |
clearInterval(window.timer) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment