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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}