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によって開発されたChromeの拡張機能で、その主な機能は「Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Shopping Helper: Find the Best Price拡張機能のCRXファイルをダウンロード

Shopping Helper: Find the Best Price拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}