Created
June 16, 2024 21:12
-
-
Save M1ndBlast/f7c23dfcfc8ff0808b4b05be8f29c596 to your computer and use it in GitHub Desktop.
Tinder Like Infinite
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
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Desktop Chrome open Tinder, login then open DevMode, in console tab, paste it and Done!
Detailed Steps: