Amazon Review Scraper

This extension will help scrape reviews of amazon products.

ما هو Amazon Review Scraper؟

Amazon Review Scraper هو إضافة Chrome تم تطويرها بواسطة Usman Yousaf Ali، والميزة الرئيسية لها هي "This extension will help scrape reviews of amazon products.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Amazon Review Scraper

قم بتنزيل ملفات الامتداد Amazon Review Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Amazon Review Scraper Amazon Review Scraper
ID anhalgipklgipnccbleknhbekjgojjgo
عنوان URL الرسمي https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo
الوصف This extension will help scrape reviews of amazon products.
حجم الملف 24.62 KB
عدد التثبيتات 36
النسخة الحالية 1.0
آخر تحديث 2021-08-17
تاريخ النشر 2021-08-16
تقييم 1.00/5 مجموع تقييمات 1
المطور Usman Yousaf Ali
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}