Skip to content

Instantly share code, notes, and snippets.

@caffo
Created May 28, 2012 18:10
Show Gist options
  • Save caffo/2820371 to your computer and use it in GitHub Desktop.
Save caffo/2820371 to your computer and use it in GitHub Desktop.
Bookmarklet to delete all displayed items in a Personal Document listing in Amazon Kindle Library
javascript:(function(){ var v = new RegExp("PersonalDocuments"); if (!v.test(document.URL)) { return false; } {a=document.getElementsByClassName('rowBodyCollapsed');for(var i = 0; i<a.length; i++){Fion.deleteItem('deleteItem_'+a[i].getAttribute('asin'));};return; }})();
@caffo
Copy link
Author

caffo commented May 28, 2012

Works perfectly to remove already read instapaper digests, obsolete version of pragprog books or any files sent periodically to your kindle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment