Amazon Reviews Scraper

This extension will help scrape reviews of Amazon products.

什么是Amazon Reviews Scraper?

Amazon Reviews Scraper是由EverdayExtensions开发的Chrome扩展程序,该扩展的主要功能是“This extension will help scrape reviews of Amazon products.”。

扩展截图

screenshot

下载Amazon Reviews Scraper扩展crx文件

下载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"
    ]
}