Last active
April 7, 2025 06:37
-
-
Save retr00exe/f1876cab89908ab805b4e045f4d12c6a to your computer and use it in GitHub Desktop.
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
(function autoLN() { | |
const interval = 10; | |
setInterval(() => { | |
const buttons = document.querySelectorAll('.text-shadow.theme__button--original'); | |
for (const btn of buttons) { | |
if (btn.textContent.trim() === 'Continue') { | |
btn.click(); | |
console.log('Continue button clicked!'); | |
break; | |
} | |
} | |
}, interval); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment