Amazon Review Scraper

Scrape Amazon reviews, ratings with this extension.

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 sarathisahoo, và tính năng chính của nó là "Scrape Amazon reviews, ratings with this extension.".

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

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

                        With this extension you can scrape reviews and ratings of any amazon product within few seconds.

Go to Amazon website, Go to any product page. Then right click on page and click "Scrape Reviews from this product" option. It will extract all reviews and ratings of the product and save it as a CSV excel file.                    

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

Tên Amazon Review Scraper Amazon Review Scraper
ID kpmpdlljfabhiffaoamleakiblkbmmle
URL Chính Thức https://chromewebstore.google.com/detail/amazon-review-scraper/kpmpdlljfabhiffaoamleakiblkbmmle
Mô tả Scrape Amazon reviews, ratings with this extension.
Kích Thước Tệp 138 KB
Số Lần Cài Đặt 333
Phiên Bản Hiện Tại 1.1.4
Cập Nhật Lần Cuối 2020-09-06
Ngày Phát Hành 2019-07-25
Đánh Giá 3.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển sarathisahoo
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.privacypolicies.com/live/6a5bf36b-a38f-4aa4-b7e6-dbc18ab164ff
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "background": {
        "persistent": true,
        "scripts": [
            "js\/csv.js",
            "js\/async.min.js",
            "src\/bg\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery\/jquery.min.js",
                "js\/async.min.js",
                "js\/jquery.query-object.js",
                "src\/inject\/inject.js"
            ],
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.in\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.es\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png"
    },
    "default_locale": "en",
    "description": "Scrape Amazon reviews, ratings with this extension.",
    "icons": {
        "128": "icons\/icon.png"
    },
    "manifest_version": 2,
    "name": "Amazon Review Scraper",
    "permissions": [
        "downloads",
        "contextMenus",
        "*:\/\/*.amazon.com\/*",
        "*:\/\/*.amazon.ca\/*",
        "*:\/\/*.amazon.in\/*",
        "*:\/\/*.amazon.co.uk\/*",
        "*:\/\/*.amazon.com.au\/*",
        "*:\/\/*.amazon.de\/*",
        "*:\/\/*.amazon.fr\/*",
        "*:\/\/*.amazon.it\/*",
        "*:\/\/*.amazon.es\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.4"
}