Skip to content

Instantly share code, notes, and snippets.

@retr00exe
Last active April 7, 2025 06:37
Show Gist options
  • Save retr00exe/f1876cab89908ab805b4e045f4d12c6a to your computer and use it in GitHub Desktop.
Save retr00exe/f1876cab89908ab805b4e045f4d12c6a to your computer and use it in GitHub Desktop.
(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