Amazon Reviews Scraper

This extension will help scrape reviews of Amazon products.

Amazon Reviews Scraperคืออะไร?

Amazon Reviews Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย EverdayExtensions และคุณลักษณะหลักของมันคือ "This extension will help scrape reviews of Amazon products."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Reviews Scraper

ดาวน์โหลดไฟล์ส่วนขยาย Amazon Reviews Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Amazon Reviews Scraper Amazon Reviews Scraper
ID jncfccofhdpofdddbkacpnbhlfnpbgpa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa
คำอธิบาย This extension will help scrape reviews of Amazon products.
ขนาดไฟล์ 13.6 KB
จำนวนการติดตั้ง 270
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-02-07
วันที่เผยแพร่ 2021-02-06
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา EverdayExtensions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}