Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Wat is Amazon Review Scraper?
Amazon Review Scraper is een Chrome-extensie ontwikkeld door Usman Yousaf Ali, en de belangrijkste functie is "This extension will help scrape reviews of amazon products.".
Extensie Screenshots
Download het CRX-bestand van de extensie Amazon Review Scraper
Download Amazon Review Scraper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension will scrape the Amazon product reviews and save it into a csv format.
Basisinformatie over de Extensie
Naam | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
Officiële URL | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
Beschrijving | This extension will help scrape reviews of amazon products. |
Bestandsgrootte | 24.62 KB |
Aantal Installaties | 36 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2021-08-17 |
Publicatiedatum | 2021-08-16 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Usman Yousaf Ali |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |