Amazon Reviews Scraper
This extension will help scrape reviews of Amazon products.
Qu'est-ce que Amazon Reviews Scraper ?
Amazon Reviews Scraper est une extension Chrome développée par EverdayExtensions, et sa fonction principale est "This extension will help scrape reviews of Amazon products.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Amazon Reviews Scraper
Téléchargez les fichiers d'extension Amazon Reviews Scraper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Amazon Reviews Scraper |
ID | jncfccofhdpofdddbkacpnbhlfnpbgpa |
URL Officiel | https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa |
Description | This extension will help scrape reviews of Amazon products. |
Taille du Fichier | 13.6 KB |
Nombre d'Installations | 270 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-02-07 |
Date de Publication | 2021-02-06 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | EverdayExtensions |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |