Review Radar

Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.

Review Radar là gì?

Review Radar là một tiện ích mở rộng Chrome được phát triển bởi https://reviewradar.pro, và tính năng chính của nó là "Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Review Radar

Tải xuống các tệp mở rộng Review Radar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Review Radar Review Radar
ID ecglifnnmnjlkemdjbhlofpemidafnin
URL Chính Thức https://chromewebstore.google.com/detail/review-radar/ecglifnnmnjlkemdjbhlofpemidafnin
Mô tả Get ideas for alternative product uses. Analayze product features based on their Amazon reviews.
Kích Thước Tệp 160 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-07-27
Ngày Phát Hành 2023-04-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://reviewradar.pro
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://reviewradar.pro
URL Trang Trợ Giúp https://reviewradar.pro/support/
URL Trang Chính Sách Bảo Mật https://reviewradar.pro/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}