Review Radar

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

Review Radar क्या है?

Review Radar https://reviewradar.pro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get ideas for alternative product uses. Analayze product features based on their Amazon reviews."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Review Radar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}