Skip to content

Instantly share code, notes, and snippets.

@jsoctocat
Last active February 3, 2025 03:10
Show Gist options
  • Save jsoctocat/21f55ab004283c75a23e16d780f895ca to your computer and use it in GitHub Desktop.
Save jsoctocat/21f55ab004283c75a23e16d780f895ca to your computer and use it in GitHub Desktop.
Reddit Remove Upvoted Posts

Go to your upvote page and then paste the code into the console

example: https://www.reddit.com/user/profile/upvoted/

document.querySelectorAll("shreddit-post").forEach((element) => {let post = element.shadowRoot.querySelector("[upvote]"); if(post.ariaPressed === 'true') post.click()})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment