Skip to content

Instantly share code, notes, and snippets.

@Overload119
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Overload119/356db48a42f4ba1d88e1 to your computer and use it in GitHub Desktop.
Save Overload119/356db48a42f4ba1d88e1 to your computer and use it in GitHub Desktop.
Muut Delete Scripts
// Open the sticky thread and close all other threads.
// After the sticky thread is done, REFRESH the page otherwise you'll delete all posts in every thread you open up.
// To run, just copy and paste the below script. It'll automatically delete posts in a thread from top to bottom every 70 miliseconds.
var deletePost = function() {
commentReply = $('.m-replies .m-reply').first();
if (commentReply.find('a').attr('title') != 'Amir') {
commentReply.find('.m-action.m-remove').click()
$('.m-mask.m-prompt.m-active .m-dialog-foot button').last().click()
}
}
setInterval(deletePost, 70)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment