This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; | |
} |