Last active
May 9, 2025 23:45
-
-
Save timkpaine/81fec95041d18baa770348559b75ee25 to your computer and use it in GitHub Desktop.
downvote-all-reddit.js
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
Array.from(document.querySelectorAll("shreddit-comment-action-row")).forEach(_ => {const elem = _.shadowRoot.children[0].children[1].children[0].children[0].children[2];if (elem.getAttribute("aria-pressed") !== "true"){elem.click();}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment