Skip to content

Instantly share code, notes, and snippets.

@kaeff
Created August 30, 2018 14:50
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 kaeff/ce8a8fe0abe71b24d7307ae29437cdca to your computer and use it in GitHub Desktop.
Save kaeff/ce8a8fe0abe71b24d7307ae29437cdca to your computer and use it in GitHub Desktop.
Delete Readability entries from Kindle
// Snippets to be copy/pasted in the JS console on Amazon's "my content and devices" page
// Do this once
NodeList.prototype.forEach = Array.prototype.forEach;
// Paste this to select the entries. Then click "delete" and confirm
document.querySelectorAll("*[title='Readability.']").forEach((el) => el.closest(".contentTableListRow_myx").querySelector("i.listViewIconPosition_myx").click())
@kaeff
Copy link
Author

kaeff commented Aug 30, 2018

Readability (we miss you 😢 ) used to send me one document per day with my readlist. This is the missing batch delete feature the kindle doesn't have.

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