Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Qu'est-ce que Amazon Review Scraper ?
Amazon Review Scraper est une extension Chrome développée par Usman Yousaf Ali, 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 Review Scraper
Téléchargez les fichiers d'extension Amazon Review 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 the Amazon product reviews and save it into a csv format.
Informations de Base sur l'Extension
Nom | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
URL Officiel | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
Description | This extension will help scrape reviews of amazon products. |
Taille du Fichier | 24.62 KB |
Nombre d'Installations | 36 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-08-17 |
Date de Publication | 2021-08-16 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | Usman Yousaf Ali |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Review 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" ] } |