ShopDAQ Price Compare

Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit.

ShopDAQ Price Compare란 무엇입니까?

ShopDAQ Price Compare은(는) https://shopdaq.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ShopDAQ Price Compare 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Automatic Comparison Shopping

Shop normally and ShopDAQ will find lower prices and coupons for the items and stores that you are visiting.

ShopDAQ Price Compare automatically looks for competitive prices on individual items that you view in an e-commerce site and displays them in a small bar at the top of the page.  It also notifies you if coupons are available for the site that you are currently at and gives you the coupon codes.

Since we search multiple sources in parallel, we are usually able to find better prices than you would by going to a price comparison search engine directly.  In addition, ShopDAQ does not require you to change your shopping habits; in our tests, it recognized most mass produced products on major shopping sites in the US, UK, Canada, and Germany, and often found lower cost sources for identical items.

Our extension only appears when it finds competitive prices or coupons for products or sites that you are viewing.

(Currently works in the US, UK, Canada, France, and Germany; other countries coming soon.)                    

확장 프로그램 기본 정보

이름 ShopDAQ Price Compare ShopDAQ Price Compare
ID ambghjoddffmldaglibmgnhegnekeohf
공식 URL https://chromewebstore.google.com/detail/shopdaq-price-compare/ambghjoddffmldaglibmgnhegnekeohf
설명 Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit.
파일 크기 60.09 KB
설치 횟수 315
현재 버전 1.0
최근 업데이트 2020-11-19
출시 날짜 2018-09-28
평점 4.38/5 총 8 개의 평점
개발자 https://shopdaq.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://shopdaq.com
개인정보 보호 정책 페이지 URL https://shopdaq.com/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShopDAQ Price Compare",
    "version": "1.0",
    "description": "Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit.",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "https:\/\/shopdaq.com\/*",
        "http:\/\/shopdaq.com\/*",
        "tabs"
    ],
    "page_action": {
        "default_icon": "pageaction.png",
        "default_title": "Click to Get Coupons For This Site",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "close_button_red.png"
    ]
}