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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Review Radar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Review Radar
ID ecglifnnmnjlkemdjbhlofpemidafnin
공식 URL 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"
            ]
        }
    ]
}