Shopping Helper: Find the Best Price

Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.

Shopping Helper: Find the Best Price क्या है?

Shopping Helper: Find the Best Price 3PM Solutions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price."।

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

screenshot
screenshot

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

crx प्रारूप में Shopping Helper: Find the Best Price एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Supported retailers:
– amazon.com
– walmart.com
– target.com
   
Frequently Asked Questions:
Q: Do you sell user data?
A: No we don’t.

Q: Is the extension free?
A: Currently, the extension is free. 

Q: Are you affiliated with any marketplaces?
A: No, we are not.

Thank you for choosing us. If you have any proposals or suggestions, please email us [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम Shopping Helper: Find the Best Price Shopping Helper: Find the Best Price
ID hcjoidkfgioghboeledhickmamiomgon
आधिकारिक URL https://chrome.google.com/webstore/detail/shopping-helper-find-the/hcjoidkfgioghboeledhickmamiomgon
विवरण Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.
फ़ाइल का आकार 579 KB
स्थापना संख्या 138
वर्तमान संस्करण 0.1.27.1
अंतिम अपडेट 2020-11-18
प्रकाशन तिथि 2020-10-02
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर 3PM Solutions
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://3pmshop.com/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shopping Helper: Find the Best Price",
    "author": "3PM Shop",
    "short_name": "3PM Shop",
    "description": "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.",
    "version": "0.1.27.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.com\/*"
            ],
            "js": [
                "amazon.js"
            ],
            "css": [
                "amazon.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.walmart.com\/*",
                "https:\/\/*.walmart.com\/*"
            ],
            "js": [
                "walmart.js"
            ],
            "css": [
                "walmart.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.target.com\/*",
                "https:\/\/*.target.com\/*"
            ],
            "js": [
                "target.js"
            ],
            "css": [
                "target.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "cookies",
        "http:\/\/*.amazon.com\/*",
        "https:\/\/*.amazon.com\/*",
        "http:\/\/*.walmart.com\/*",
        "https:\/\/*.walmart.com\/*",
        "http:\/\/*.target.com\/*",
        "https:\/\/*.target.com\/*",
        "http:\/\/*.3pmshop.com\/*",
        "https:\/\/*.3pmshop.com\/*"
    ],
    "browser_action": {
        "default_title": "Shopping Helper: Find the Best Price",
        "default_icon": {
            "16": "icon128.png",
            "48": "icon128.png",
            "96": "icon128.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon128.png",
        "48": "icon128.png",
        "96": "icon128.png",
        "128": "icon128.png"
    }
}