Also Boughts Downloader by Kindletrends

Downloads Also Bought, Also Viewed and Also Read data, as well as Top 100s and Hot New Releases from the Amazon Kindle Store

什麼是Also Boughts Downloader by Kindletrends?

Also Boughts Downloader by Kindletrends是由https://kindletrends.com開發的Chrome擴展程式,該擴展的主要功能是“Downloads Also Bought, Also Viewed and Also Read data, as well as Top 100s and Hot New Releases from the Amazon Kindle Store”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Also Boughts Downloader by Kindletrends擴展crx文件

下載Also Boughts Downloader by Kindletrends擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension lets you download:

 - Lists of titles shown on a particular book details page in the Kindle Store.  These may be 'Also Bought', 'Also Viewed', 'Books you may like', 'Products related to this item' or other names.
 - Top 100 and Hot New Releases lists for an Amazon category page
 - Search results (US store only right now, but other stores will be added soon)

Self-published authors on the Amazon Kindle Store can use this information to identify books similar to their own titles for research purposes.  Currently the extension works on the US, UK, DE and Canada Amazon stores, but I'll look at adding support for others in future.

When the extension is loaded, you should see a button with a download icon appear next to the title lists ('carousels') in a Kindle Store book details page, as well as the Top 100s and Hot New Releases for a category, or the search results.  Different pages may have one or more of these at different times and in different places, so if you don't see them, try another book, or the same book at another time.  

To use the extension, click the button.  You should see each page in the carousel load in turn, and when the end is reached, you should get a popup to download the file, or see the file automatically downloaded (depending on your browser settings).  

*Just added*: support for downloading cover montages as well!  When you download the book data, you'll get another prompt asking if you want to 'download multiple files'.  Click 'Allow' and you'll get a JPEG file with a montage of all the covers for the book data you've downloaded.  This can be really helpful to get an idea of cover conventions within a genre.

Book information is in a tab-delimited text file you can open in any spreadsheet program, and includes the following:

ASIN	
Title	
Series	
Author	
Number of Reviews
Average review 
Price	
URL to book details page

Note: working out the series name isn't always easy. We can handle most common formats like 'Book Title (Series Name Book )', but I have learned that there's a much bigger range of formats out there than I realised.   If the series name can't be identified, then it just throws up its hands and dumps the whole thing into the Title field, which you can search on anyway.

Book formats are always changing, and so this extension might break if it encounters a new one it can't handle.  If this happens, please drop me an email at  with the details of the book on which it happened, and I'll do what I can to resolve it.

Permissions required for the extension to work are because it adds a 'download' button to the Kindle Store book details page. Always exercise caution when downloading files from the Internet.                    

擴展基本資訊

名稱 Also Boughts Downloader by Kindletrends Also Boughts Downloader by Kindletrends
ID kpfalnccljfmbogklbbgbhcldihafcpp
官方網址 https://chromewebstore.google.com/detail/also-boughts-downloader-b/kpfalnccljfmbogklbbgbhcldihafcpp
簡介 Downloads Also Bought, Also Viewed and Also Read data, as well as Top 100s and Hot New Releases from the Amazon Kindle Store
檔案大小 61.05 KB
安裝次數 4,206
目前版本 0.0.74
更新時間 2022-10-16
上架時間 2021-10-04
評分 4.56/5 共 9 次評分
開發者 https://kindletrends.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://kindletrends.com/download-also-boughts-chrome-extension/
說明頁面URL https://kindletrends.com/download-also-boughts-chrome-extension/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Also Boughts Downloader by Kindletrends",
    "description": "Downloads Also Bought, Also Viewed and Also Read data, as well as Top 100s and Hot New Releases from the Amazon Kindle Store",
    "homepage_url": "https:\/\/kindletrends.com\/download-also-boughts-chrome-extension\/",
    "version": "0.0.74",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Also Boughts and Top 100s Downloader by Kindletrends.  Click the button for instructions.",
        "default_popup": "instructions.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ajax-loader.gif"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "before.js",
                ".\/options_sync\/webext-options-sync.3.1.0.js",
                ".\/console.history\/console-history.min.js",
                ".\/merge-images\/index.umd.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.ca\/*",
                "https:\/\/*.amazon.de\/*"
            ]
        },
        {
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ],
            "js": [
                "after.js",
                "abs_downloader_functions.js",
                "execute_abs_downloader_rewrite.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*\/dp\/*",
                "https:\/\/*.amazon.com\/dp\/*",
                "https:\/\/*.amazon.com\/gp\/product\/*",
                "https:\/\/*.amazon.co.uk\/*\/dp\/*",
                "https:\/\/*.amazon.co.uk\/dp\/*",
                "https:\/\/*.amazon.co.uk\/gp\/product\/*",
                "https:\/\/*.amazon.ca\/*\/dp\/*",
                "https:\/\/*.amazon.ca\/dp\/*",
                "https:\/\/*.amazon.ca\/gp\/product\/*",
                "https:\/\/*.amazon.de\/*\/dp\/*",
                "https:\/\/*.amazon.de\/dp\/*",
                "https:\/\/*.amazon.de\/gp\/product\/*"
            ]
        },
        {
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ],
            "js": [
                "after.js",
                "top_100s_functions.js",
                "execute_top_100s_downloader.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/gp\/new-releases\/*",
                "https:\/\/*.amazon.com\/gp\/bestsellers\/*",
                "https:\/\/*.amazon.com\/Best-Sellers-*",
                "https:\/\/*.amazon.com\/best-sellers-*",
                "https:\/\/*.amazon.co.uk\/gp\/new-releases\/*",
                "https:\/\/*.amazon.co.uk\/gp\/bestsellers\/*",
                "https:\/\/*.amazon.co.uk\/Best-Sellers-*",
                "https:\/\/*.amazon.co.uk\/best-sellers-*",
                "https:\/\/*.amazon.ca\/gp\/new-releases\/*",
                "https:\/\/*.amazon.ca\/gp\/bestsellers\/*",
                "https:\/\/*.amazon.ca\/Best-Sellers-*",
                "https:\/\/*.amazon.ca\/best-sellers-*",
                "https:\/\/*.amazon.de\/*gp\/bestsellers\/*",
                "https:\/\/*.amazon.de\/*gp\/new-releases\/*"
            ]
        },
        {
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ],
            "js": [
                "after.js",
                "search_functions.js",
                "execute_search_downloader.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/s?*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.amazon.com\/*\/dp\/*",
        "https:\/\/*.amazon.com\/dp\/*",
        "https:\/\/*.amazon.com\/gp\/product\/*"
    ]
}