Amazon Reviews Scraper
This extension will help scrape reviews of Amazon products.
What is Amazon Reviews Scraper?
Amazon Reviews Scraper is a Chrome extension developed by EverdayExtensions, and its main feature is "This extension will help scrape reviews of Amazon products.".
Extension Screenshots
Download Amazon Reviews Scraper Extension CRX File
Download Amazon Reviews 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 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.
Extension Basic Information
Name | Amazon Reviews Scraper |
ID | jncfccofhdpofdddbkacpnbhlfnpbgpa |
Official URL | https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa |
Description | This extension will help scrape reviews of Amazon products. |
File Size | 13.6 KB |
Installation Count | 270 |
Current Version | 1.0 |
Last Updated | 2021-02-07 |
Publish Date | 2021-02-06 |
Rating | 1.00/5 Total 1 Ratings |
Developer | EverdayExtensions |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |