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

Cos'è Also Boughts Downloader by Kindletrends?

Also Boughts Downloader by Kindletrends è un'estensione di Chrome sviluppata da https://kindletrends.com, e la sua funzione principale è "Downloads Also Bought, Also Viewed and Also Read data, as well as Top 100s and Hot New Releases from the Amazon Kindle Store".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Also Boughts Downloader by Kindletrends

Scarica i file di estensione Also Boughts Downloader by Kindletrends in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Also Boughts Downloader by Kindletrends Also Boughts Downloader by Kindletrends
ID kpfalnccljfmbogklbbgbhcldihafcpp
URL Ufficiale https://chromewebstore.google.com/detail/also-boughts-downloader-b/kpfalnccljfmbogklbbgbhcldihafcpp
Descrizione Downloads Also Bought, Also Viewed and Also Read data, as well as Top 100s and Hot New Releases from the Amazon Kindle Store
Dimensione del File 61.05 KB
Conteggio Installazioni 4,206
Versione Corrente 0.0.74
Ultimo Aggiornamento 2022-10-16
Data di Pubblicazione 2021-10-04
Valutazione 4.56/5 Totale 9 Valutazioni
Sviluppatore https://kindletrends.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://kindletrends.com/download-also-boughts-chrome-extension/
URL della Pagina di Aiuto https://kindletrends.com/download-also-boughts-chrome-extension/
Lingue Supportate 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\/*"
    ]
}