Amazon Review Scraper

This extension will help scrape reviews of amazon products.

Cos'è Amazon Review Scraper?

Amazon Review Scraper è un'estensione di Chrome sviluppata da Usman Yousaf Ali, e la sua funzione principale è "This extension will help scrape reviews of amazon products.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Amazon Review Scraper

Scarica i file di estensione Amazon Review Scraper 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 will scrape the Amazon product reviews and save it into a csv format.                    

Informazioni di Base sull'Estensione

Nome Amazon Review Scraper Amazon Review Scraper
ID anhalgipklgipnccbleknhbekjgojjgo
URL Ufficiale https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo
Descrizione This extension will help scrape reviews of amazon products.
Dimensione del File 24.62 KB
Conteggio Installazioni 36
Versione Corrente 1.0
Ultimo Aggiornamento 2021-08-17
Data di Pubblicazione 2021-08-16
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Usman Yousaf Ali
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Review 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"
    ]
}