Skip to content

Instantly share code, notes, and snippets.

@mg
Created July 25, 2016 11:20
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 mg/b470c03dbcb963b9fbb75db5f7a385b1 to your computer and use it in GitHub Desktop.
Save mg/b470c03dbcb963b9fbb75db5f7a385b1 to your computer and use it in GitHub Desktop.
Copy Amazon Kindle Highlights in Chrome
var items= document.getElementsByClassName("highlight")
var lines= []
for(var i= 0; i < items.length; i++) lines.push(items[i].innerText)
copy(lines.join("\n\n"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment