Skip to content

Instantly share code, notes, and snippets.

@kboy-silvergym
Created September 27, 2019 15:37
Show Gist options
  • Save kboy-silvergym/afb196f28919ffbe13712c982b6d955f to your computer and use it in GitHub Desktop.
Save kboy-silvergym/afb196f28919ffbe13712c982b6d955f to your computer and use it in GitHub Desktop.
Tinder swipe shortcut in iOS
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