Skip to content

Instantly share code, notes, and snippets.

@gdiggs
Created December 29, 2014 22:43
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 gdiggs/c3052f6f91d77d8ad63a to your computer and use it in GitHub Desktop.
Save gdiggs/c3052f6f91d77d8ad63a to your computer and use it in GitHub Desktop.
Clear out modqueue on reddit
var clickFirst = function() {
var $link = $('.pretty-button.positive:not(.pressed):first');
if($link.length > 0) {
console.log("clicking");
$link.click();
} else {
console.log("no more links");
}
};
setInterval(clickFirst, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment