Skip to content

Instantly share code, notes, and snippets.

@andirkh
Created May 2, 2019 18:01
Show Gist options
  • Save andirkh/a4302c19aec03c4a9d232ccf5104059a to your computer and use it in GitHub Desktop.
Save andirkh/a4302c19aec03c4a9d232ccf5104059a to your computer and use it in GitHub Desktop.
Tinder Always Swipe Right 🤣🔥
// Inspect element (f12) then add `sss` class into `like` button
// In the browser's console, copy and paste this code below:
setInterval(() => {
const swipe = document.getElementsByClassName('sss');
swipe[0].click()
}, 3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment