Skip to content

Instantly share code, notes, and snippets.

@tomoya55
tomoya55 / ExportKindle.js
Last active May 10, 2021 11:37 — forked from viatsko/ExportKindle.js
Amazon Kindle Exporter
// The following data should be run in the console while viewing the page https://read.amazon.com/
// It will export a JSON file called "kindleItems.json"
(function () {
const saveJSON = function (data, filename) {
if (!data) {
console.error("save: No data");
return;
}