Skip to content

Instantly share code, notes, and snippets.

@M1ndBlast
Created June 16, 2024 21:12
Show Gist options
  • Save M1ndBlast/f7c23dfcfc8ff0808b4b05be8f29c596 to your computer and use it in GitHub Desktop.
Save M1ndBlast/f7c23dfcfc8ff0808b4b05be8f29c596 to your computer and use it in GitHub Desktop.
Tinder Like Infinite
let idInterval;
idInterval = setInterval(() => {
let btn = Array.from(document.querySelectorAll('span.Hidden'))
.filter(e => e.innerText.toUpperCase() == "LIKE")[0]
.closest('button');
if (!btn) {
clearInterval(idInterval)
alert('Fin de la ejecución')
}
btn.click()
btn.scrollIntoView()
}, 1000)
@M1ndBlast
Copy link
Author

In Desktop Chrome open Tinder, login then open DevMode, in console tab, paste it and Done!

Detailed Steps:

  1. Open Tinder on Desktop Chrome
  2. Login
  3. Open Chrome's DevMode (F12 or Ctrl+Shift+I or Right clic>Inspect)
  4. Go to Console tab
  5. Paste Infinite_like_tinder.js Code
  6. Enjoy :)

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