Review Radar
Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.
Qu'est-ce que Review Radar ?
Review Radar est une extension Chrome développée par https://reviewradar.pro, et sa fonction principale est "Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Review Radar
Téléchargez les fichiers d'extension Review Radar 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
Review Radar is a Chrome extension for ecom store owners doing product research. It allows to extract and summarize information from negative product reviews on what can be improved, the types of issues and their prominence. It also allows the user to get ideas on alternative ways or niches to promote the same product. If you are an ecom owners looking to save time on your product research, this extension seeks to become part of your trusted toolbox.
Informations de Base sur l'Extension
Nom | Review Radar |
ID | ecglifnnmnjlkemdjbhlofpemidafnin |
URL Officiel | https://chromewebstore.google.com/detail/review-radar/ecglifnnmnjlkemdjbhlofpemidafnin |
Description | Get ideas for alternative product uses. Analayze product features based on their Amazon reviews. |
Taille du Fichier | 160 KB |
Nombre d'Installations | 43 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-07-27 |
Date de Publication | 2023-04-04 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://reviewradar.pro |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://reviewradar.pro |
URL de la Page d'Aide | https://reviewradar.pro/support/ |
URL de la Page de Politique de Confidentialité | https://reviewradar.pro/privacy |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Review Radar", "author": "BowTiedSwan", "description": "Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.", "version": "1.1", "options_ui": { "page": "options.html" }, "manifest_version": 3, "permissions": [ "storage", "activeTab", "scripting", "tabs" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Review Radar", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.com.au\/*", "https:\/\/www.amazon.com.br\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.cn\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.de\/*", "https:\/\/www.amazon.in\/*", "https:\/\/www.amazon.it\/*", "https:\/\/www.amazon.com.mx\/*", "https:\/\/www.amazon.nl\/*", "https:\/\/www.amazon.sg\/*", "https:\/\/www.amazon.es\/*", "https:\/\/www.amazon.com.tr\/*", "https:\/\/www.amazon.ae\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.se\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ] } |