Created
March 30, 2023 04:54
-
-
Save moe93/d8f72fd4127fc02e7aef31fe76461485 to your computer and use it in GitHub Desktop.
Remove reddit upvotes in bulk
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
// A script to remove reddit upvotes in bulk | |
// | |
// _______ INSTRUCTIONS _______ | |
// ____________________________ | |
// Go to old reddit and navigate to "upvoted" tab then run this script in the command panel. | |
// Once the page refreshes, re-run script. | |
// | |
// If you feel like automating this script, have at it, I am too lazy to do it. | |
// | |
// AUTHOR : Mohammad Odeh | |
// DATE : Mar. 30, 2023 | |
// | |
Array.from(document.querySelectorAll("div.arrow.upmod")).forEach( | |
(el) => { | |
el.click(); | |
}) | |
location.reload(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment