June 16, 2023 reddit automation ☕️ buy me a coffee
Reddit recently introduced insane API changes, akin to those introduced by twitter, that are essentially forcing all 3rd party app creators to take down their products. Apollo was the first (as far as I am aware) with my personal favourite, BaconReader also following along. Thousands of subreddits partook in a protest but with no sign of the Reddit leadership reversing the changes (or at least adjusting them… paid API isn’t unreasonable!). Therefore, I am going to quit the site (oh no! what will they do without my doom-scrolling) but first I will completely wipe my profile.
The way reddit handles account deletion means that the username is essentially disassociated from the content it has provided. This means that reddit essentially still has all your data on its site. Thus, this quick tutorial will show you how to delete your posts and your comments. After that, you can rest easy knowing that your years of shitposting aren’t going to give reddit another penny.
old.reddit.com
siteThe below works on both the submitted and comments pages.
F12
var $delButtons = $('.del-button .option .yes'), currentTime = 0;
$delButtons.each(function() {
var _this = $(this);
currentTime += 500;
setTimeout(
function() {
_this.click();
},
currentTime);
}
);
Once you get to the end of the page, refresh and go again!
Note: from my experience, older content might take a while to show up. Once you think you have deleted everything, give it a minute and double check!