Skip to content

Instantly share code, notes, and snippets.

@nomnel
Created May 12, 2013 06:10
Show Gist options
  • Save nomnel/5562604 to your computer and use it in GitHub Desktop.
Save nomnel/5562604 to your computer and use it in GitHub Desktop.
InstapaperでひたすらDeleteリンククリックするやつ (しょっちゅう失敗する)
window.confirm = function () { return true; };
xs = document.getElementsByClassName("deleteLink");
for (var i = xs.length - 1; i >= 0; i--) {
xs[i].click();
}
location.reload();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment