Amazon Review Scraper

This extension will help scrape reviews of amazon products.

Apa itu Amazon Review Scraper?

Amazon Review Scraper adalah ekstensi Chrome yang dikembangkan oleh Usman Yousaf Ali, dan fitur utamanya adalah "This extension will help scrape reviews of amazon products.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Amazon Review Scraper

Unduh file ekstensi Amazon Review Scraper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This extension will scrape the Amazon product reviews and save it into a csv format.                    

Informasi Dasar Ekstensi

Nama Amazon Review Scraper Amazon Review Scraper
ID anhalgipklgipnccbleknhbekjgojjgo
URL Resmi https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo
Deskripsi This extension will help scrape reviews of amazon products.
Ukuran File 24.62 KB
Jumlah Instalasi 36
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-08-17
Tanggal Publikasi 2021-08-16
Penilaian 1.00/5 Total 1 Penilaian
Pengembang Usman Yousaf Ali
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}