Amazon Review Scraper

This extension will help scrape reviews of amazon products.

Amazon Review Scraper là gì?

Amazon Review Scraper là một tiện ích mở rộng Chrome được phát triển bởi Usman Yousaf Ali, và tính năng chính của nó là "This extension will help scrape reviews of amazon products.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Amazon Review Scraper

Tải xuống các tệp mở rộng Amazon Review Scraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Amazon Review Scraper Amazon Review Scraper
ID anhalgipklgipnccbleknhbekjgojjgo
URL Chính Thức https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo
Mô tả This extension will help scrape reviews of amazon products.
Kích Thước Tệp 24.62 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-08-17
Ngày Phát Hành 2021-08-16
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Usman Yousaf Ali
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}