Review Radar
Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.
什麼是Review Radar?
Review Radar是由https://reviewradar.pro開發的Chrome擴展程式,該擴展的主要功能是“Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.”。
擴展截圖
下載Review Radar擴展crx文件
下載Review Radar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Review Radar |
ID | ecglifnnmnjlkemdjbhlofpemidafnin |
官方網址 | https://chromewebstore.google.com/detail/review-radar/ecglifnnmnjlkemdjbhlofpemidafnin |
簡介 | Get ideas for alternative product uses. Analayze product features based on their Amazon reviews. |
檔案大小 | 160 KB |
安裝次數 | 43 |
目前版本 | 1.1 |
更新時間 | 2023-07-27 |
上架時間 | 2023-04-04 |
評分 | 5.00/5 共 1 次評分 |
開發者 | https://reviewradar.pro |
電子郵箱 | [email protected] |
付費類型 | in_app |
擴展官網 | https://reviewradar.pro |
說明頁面URL | https://reviewradar.pro/support/ |
隱私政策頁面URL | https://reviewradar.pro/privacy |
支援的語言 | 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" ] } ] } |