How To Extract Kindle Notes From The Web
Categories: [Technology], [How To]
Luckily, it's quite easy...
- Open https://read.amazon.com/notebook
- Select the book you want to extract your notes from.
- Open your web browser developer console.
- Copy and past the code below into the console
- Press enter and profit!
for(let i = 0; i < document.getElementsByClassName("kp-notebook-note").length; i++) {
if (notes[i].id.length > 5) {
console.log(notes[i].childNodes[1].innerHTML)
}
}