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
官方URL 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\/*"
    ]
}