Amazon Reviews Scraper

This extension will help scrape reviews of Amazon products.

Amazon Reviews Scraper là gì?

Amazon Reviews Scraper là một tiện ích mở rộng Chrome được phát triển bởi EverdayExtensions, 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

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

Tải xuống các tệp mở rộng Amazon Reviews 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 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.                    

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

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