Amazon Reviews Downloader
Download Amazon Product Reviews automatically
Qu'est-ce que Amazon Reviews Downloader ?
Amazon Reviews Downloader est une extension Chrome développée par 3HS, et sa fonction principale est "Download Amazon Product Reviews automatically".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Amazon Reviews Downloader
Téléchargez les fichiers d'extension Amazon Reviews Downloader 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
Would you like to get the Amazon product reviews data for analyzing? This extension will help you with few clicks! 🆓 This extension will always be Free ! If you like it just buy me a coffee 🍻. * Features: 1. Download Amazon product reviews as CSV format with fields (full): Reviewer, Rating, Review Location, Review Date, Review Title, Review Text, Verified Purchase (Yes/No), Number of Helpful, Review URL 2. Select Criteria: Sort By, Filter By, Stars 3. Select the Displayed Fields in CSV. * How it works: 1. Install the extension. 2. Open an Amazon product page. 3. Open the extension and start downloading! * Support for almost Amazon sites.
Informations de Base sur l'Extension
Nom | Amazon Reviews Downloader |
ID | odgffkocgedigcjopmjgobenngomikkd |
URL Officiel | https://chromewebstore.google.com/detail/amazon-reviews-downloader/odgffkocgedigcjopmjgobenngomikkd |
Description | Download Amazon Product Reviews automatically |
Taille du Fichier | 96.66 KB |
Nombre d'Installations | 1,049 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2023-12-14 |
Date de Publication | 2020-03-22 |
Évaluation | 3.29/5 Total 7 Évaluations |
Développeur | 3HS |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | http://theamzreviews.com:8080/ |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Reviews Downloader", "description": "Download Amazon Product Reviews automatically", "version": "1.4", "action": { "default_popup": "popup.html" }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "permissions": [ "activeTab", "storage" ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';", "sandboxed_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.com.au\/*", "https:\/\/www.amazon.de\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.it\/*", "https:\/\/www.amazon.es\/*" ], "run_at": "document_idle", "js": [ "libs\/jquery.min.js", "libs\/papaparse.min.js", "libs\/bootstrap.min.js", "src\/content_script.js" ] } ], "manifest_version": 3 } |