Created
September 18, 2025 09:17
-
-
Save hassanshaikley/309f3ed9fe3d4b4907a5e33c3d02ffbe 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
| delete reddit post like https://old.reddit.com/user/Your-Username | |
| I got rate limited pretty quick using 200 | |
| const deleteThing = () => { | |
| document.getElementsByClassName("option main")[0].children[0].click() | |
| setTimeout(() => { | |
| document.getElementsByClassName("yes")[0].click() | |
| }, 100) | |
| } | |
| setInterval(() => { | |
| deleteThing() | |
| }, 200) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment