Skip to content

Instantly share code, notes, and snippets.

@TheNoobWar
TheNoobWar / delete-reddit-history.js
Created April 11, 2023 04:03 — forked from andrhamm/delete-reddit-history.js
Delete reddit comment and post history
// Load user profile page, if using RES scroll so many comments are loaded onto the page
// then enter the following in the browser's developer console.
// it will delete 1 post/comment every 1500ms
var $domNodeToIterateOver = $('.del-button .option .yes'),
currentTime = 0,
timeInterval = 1500;
$domNodeToIterateOver.each(function() {