Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 15, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Amazon Review Scraper", "version": "1.0.1", "description": "Amazon review scraper using multi-filter strategy to collect 500+ reviews per product.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png" } }, "permissions": [ "activeTab", "storage", "downloads" ], "host_permissions": [ "*:\/\/www.amazon.com\/*", "*:\/\/www.amazon.co.uk\/*", "*:\/\/www.amazon.de\/*", "*:\/\/www.amazon.ca\/*", "*:\/\/www.amazon.fr\/*", "*:\/\/www.amazon.it\/*", "*:\/\/www.amazon.es\/*", "*:\/\/www.amazon.com.au\/*", "*:\/\/www.amazon.co.jp\/*", "*:\/\/www.amazon.in\/*", "*:\/\/www.amazon.com.br\/*", "*:\/\/www.amazon.com.mx\/*" ], "background": { "service_worker": "service_worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*", "*:\/\/www.amazon.co.uk\/*", "*:\/\/www.amazon.de\/*", "*:\/\/www.amazon.ca\/*", "*:\/\/www.amazon.fr\/*", "*:\/\/www.amazon.it\/*", "*:\/\/www.amazon.es\/*", "*:\/\/www.amazon.com.au\/*", "*:\/\/www.amazon.co.jp\/*", "*:\/\/www.amazon.in\/*", "*:\/\/www.amazon.com.br\/*", "*:\/\/www.amazon.com.mx\/*" ], "js": [ "content_scripts\/amazon_scraper.js" ], "run_at": "document_idle" } ] }