Amazon Reviews Scraper

This extension will help scrape reviews of Amazon products.

Was ist Amazon Reviews Scraper?

Amazon Reviews Scraper ist eine Chrome-Erweiterung, die von EverdayExtensions entwickelt wurde, und ihr Hauptmerkmal ist "This extension will help scrape reviews of Amazon products.".

Erweiterungsscreenshots

screenshot

Amazon Reviews Scraper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Amazon Reviews Scraper-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

                        This extension will scrape reviews for any Amazon product of your choice by simply copying the URL and pressing submit. Use reviews to organize and research what people are saying about your product or what people are saying about your competitors product in one place. You also have the ability to research existing products and see how they can be improved. This tool makes it very easy for you to do that.                    

Grundlegende Informationen zur Erweiterung

Name Amazon Reviews Scraper Amazon Reviews Scraper
ID jncfccofhdpofdddbkacpnbhlfnpbgpa
Offizielle URL https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa
Beschreibung This extension will help scrape reviews of Amazon products.
Dateigröße 13.6 KB
Installationsanzahl 270
Aktuelle Version 1.0
Letztes Update 2021-02-07
Veröffentlichungsdatum 2021-02-06
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler EverdayExtensions
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Reviews Scraper",
    "version": "1.0",
    "description": "This extension will help scrape reviews of Amazon products.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/product-reviews\/*"
            ],
            "css": [
                "scripts\/content\/css\/webContent.css"
            ],
            "js": [
                "scripts\/content\/js\/webContent.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "permissions": [
        "storage"
    ]
}