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
| /** | |
| * 批量下载自己已购买的电子书和个人文档 | |
| * 要求:至少有一台Kindle设备。 | |
| * 打开 https://www.amazon.cn/hz/mycd/myx/ ,然后按F12键进入Console(控制台),把代码全部复制并粘贴到控制台中,回车。 | |
| * 然后输入 download("ebook") ,下载所有的电子书 | |
| * 想下载个人文档,则是输入 download("pdoc") | |
| * 下载时如果某个文件下载失败,可以使用刚刚运行的函数(也就是 download() 或者 download("pdoc") )重新开始下载。在网页没被关闭的情况下,程序会忽略已经下载了的文件。 | |
| * 脚本运行期间请不要关闭网页,请允许网页自动下载多个文件 | |
| * 如果网页被关闭了,但恰巧你保存了上次下载任务返回的成功下载的文件列表, | |
| * 可以选择复制该列表中的所有文字,并将其作为 download 的第二个参数传入(如 download("ebook",["something","something else"]) ),这样程序同样会忽略已经下载了的文件。 |