Kindle Book List Exporter

Export the list of books in your Kindle library as a spreadsheet with 1 click

Kindle Book List Exporter là gì?

Kindle Book List Exporter là một tiện ích mở rộng Chrome được phát triển bởi App Maker Supreme, và tính năng chính của nó là "Export the list of books in your Kindle library as a spreadsheet with 1 click".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kindle Book List Exporter

Tải xuống các tệp mở rộng Kindle Book List Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        You'll get a spreadsheet with these info about all your books:
* ISBN, which is the same as ASIN (Amazon ID)
* Type (e.g. ebook, ebook_sample)
* Origin (e.g. purchase, kindle unlimited)
* Title
* Author(s)

The file format is csv, which can be opened easily in Excel or Google Sheet.

How to use:
1. Log into read.amazon.com with your Amazon account
2. Click on this extension icon, then click on "Get list of books" button
3. Choose a place to save the spreadsheet file

-----

Where to get a license key:
https://kindlebooklistexporter.lemonsqueezy.com/checkout/buy/3554a17e-422b-473b-949e-f363f175bc15?media=0&logo=0

-----

*Limitations:*
The current approach only downloads up to 9999 books. If you need more than that, could you email me about your use case at [email protected]? 

If there are enough people who wants to download 10000 books or more, I'll try to find a way for you.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kindle Book List Exporter Kindle Book List Exporter
ID cnmmnejiklbbkapmjegmldhaejjiejbo
URL Chính Thức https://chromewebstore.google.com/detail/kindle-book-list-exporter/cnmmnejiklbbkapmjegmldhaejjiejbo
Mô tả Export the list of books in your Kindle library as a spreadsheet with 1 click
Kích Thước Tệp 107 KB
Số Lần Cài Đặt 563
Phiên Bản Hiện Tại 1.24
Cập Nhật Lần Cuối 2024-03-02
Ngày Phát Hành 2023-10-17
Đánh Giá 4.75/5 Tổng số 16 Đánh Giá
Nhà Phát Triển App Maker Supreme
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/3cc556b1-5325-466f-b7a4-54bed40911f8
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Export the list of books in your Kindle library as a spreadsheet with 1 click",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "name": "Kindle Book List Exporter",
    "version": "1.24",
    "permissions": [
        "downloads",
        "storage",
        "*:\/\/api.lemonsqueezy.com\/*",
        "tabs",
        "*:\/\/read.amazon.com\/*",
        "*:\/\/read.amazon.co.uk\/*",
        "*:\/\/read.amazon.ca\/*",
        "*:\/\/read.amazon.com.au\/*",
        "*:\/\/read.amazon.in\/*",
        "*:\/\/read.amazon.de\/*",
        "*:\/\/read.amazon.fr\/*",
        "*:\/\/read.amazon.es\/*",
        "*:\/\/read.amazon.it\/*",
        "*:\/\/read.amazon.co.jp\/*",
        "*:\/\/read.amazon.com.mx\/*",
        "*:\/\/read.amazon.com.br\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.amazon.com\/yourbooks*",
                "*:\/\/read.amazon.com\/*",
                "*:\/\/read.amazon.co.uk\/*",
                "*:\/\/read.amazon.ca\/*",
                "*:\/\/read.amazon.com.au\/*",
                "*:\/\/read.amazon.in\/*",
                "*:\/\/read.amazon.de\/*",
                "*:\/\/read.amazon.fr\/*",
                "*:\/\/read.amazon.es\/*",
                "*:\/\/read.amazon.it\/*",
                "*:\/\/read.amazon.co.jp\/*",
                "*:\/\/read.amazon.com.mx\/*",
                "*:\/\/read.amazon.com.br\/*"
            ],
            "js": [
                "sentry.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}