Created
September 27, 2019 15:37
-
-
Save kboy-silvergym/afb196f28919ffbe13712c982b6d955f to your computer and use it in GitHub Desktop.
Tinder swipe shortcut in iOS
This file contains 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
const clickLikeButton = () => { | |
const buttons = document.getElementsByClassName("recsGamepad__button"); | |
if (buttons) { | |
const likeButton = buttons[3]; | |
likeButton.click(); | |
} else { | |
alert("no buttons"); | |
} | |
}; | |
setInterval(clickLikeButton, 1000); | |
completion([]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment