Amazon Reviews Scraper

This extension will help scrape reviews of Amazon products.

O que é Amazon Reviews Scraper?

Amazon Reviews Scraper é uma extensão do Chrome desenvolvida por EverdayExtensions, e sua principal característica é "This extension will help scrape reviews of Amazon products.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Amazon Reviews Scraper

Baixe arquivos de extensão Amazon Reviews Scraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Amazon Reviews Scraper Amazon Reviews Scraper
ID jncfccofhdpofdddbkacpnbhlfnpbgpa
URL Oficial https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa
Descrição This extension will help scrape reviews of Amazon products.
Tamanho do Arquivo 13.6 KB
Contagem de Instalações 270
Versão Atual 1.0
Última Atualização 2021-02-07
Data de Publicação 2021-02-06
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor EverdayExtensions
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}