Amazon Review Scraper
This extension will help scrape reviews of amazon products.
What is Amazon Review Scraper?
Amazon Review Scraper is a Chrome extension developed by Usman Yousaf Ali, and its main feature is "This extension will help scrape reviews of amazon products.".
Extension Screenshots
Download Amazon Review Scraper Extension CRX File
Download Amazon Review Scraper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension will scrape the Amazon product reviews and save it into a csv format.
Extension Basic Information
Name | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
Official URL | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
Description | This extension will help scrape reviews of amazon products. |
File Size | 24.62 KB |
Installation Count | 36 |
Current Version | 1.0 |
Last Updated | 2021-08-17 |
Publish Date | 2021-08-16 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Usman Yousaf Ali |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |