Amazon Reviews Downloader

Download Amazon Product Reviews automatically

Was ist Amazon Reviews Downloader?

Amazon Reviews Downloader ist eine Chrome-Erweiterung, die von 3HS entwickelt wurde, und ihr Hauptmerkmal ist "Download Amazon Product Reviews automatically".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Amazon Reviews Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Amazon Reviews Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Would you like to get the Amazon product reviews data for analyzing? This extension will help you with few clicks!

🆓 This extension will always be Free ! If you like it just buy me a coffee 🍻.

* Features:

1. Download Amazon product reviews as CSV format with fields (full):
Reviewer, Rating, Review Location, Review Date, Review Title, Review Text, Verified Purchase (Yes/No), Number of Helpful, Review URL

2. Select Criteria: Sort By, Filter By, Stars

3. Select the Displayed Fields in CSV.

* How it works:

1. Install the extension.
2. Open an Amazon product page.
3. Open the extension and start downloading!

* Support for almost Amazon sites.                    

Grundlegende Informationen zur Erweiterung

Name Amazon Reviews Downloader Amazon Reviews Downloader
ID odgffkocgedigcjopmjgobenngomikkd
Offizielle URL https://chromewebstore.google.com/detail/amazon-reviews-downloader/odgffkocgedigcjopmjgobenngomikkd
Beschreibung Download Amazon Product Reviews automatically
Dateigröße 96.66 KB
Installationsanzahl 1,049
Aktuelle Version 1.4
Letztes Update 2023-12-14
Veröffentlichungsdatum 2020-03-22
Bewertung 3.29/5 Insgesamt 7 Bewertungen
Entwickler 3HS
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite http://theamzreviews.com:8080/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Reviews Downloader",
    "description": "Download Amazon Product Reviews automatically",
    "version": "1.4",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
        "sandboxed_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.com.au\/*",
                "https:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.it\/*",
                "https:\/\/www.amazon.es\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "libs\/jquery.min.js",
                "libs\/papaparse.min.js",
                "libs\/bootstrap.min.js",
                "src\/content_script.js"
            ]
        }
    ],
    "manifest_version": 3
}