Harbor Freight Coupons

Automatically find and display harbor freight coupons on their website from hfqpdb.com

Harbor Freight Coupons란 무엇입니까?

Harbor Freight Coupons은(는) sclem에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically find and display harbor freight coupons on their website from hfqpdb.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Harbor Freight Coupons 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Never pay list price at harbor freight again!

Searches hfqpdb.com database for best coupon by item number while browsing harbor freight's website and displays the price on the webpage next to the retail price.

Update v2.0.1 - Fix issue with duplicate coupons on search page.

Update 09/02/2019 - direct link to privacy policy (we store/collect no data): https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY

Update v2.0.0 - Compatibility with harbor freight website redesign!

Update v1.4.0 - moves CORS request to background page for chrome 73.                    

확장 프로그램 기본 정보

이름 Harbor Freight Coupons Harbor Freight Coupons
ID hhbonmijejindhnfgcdggfdbklphhloj
공식 URL https://chromewebstore.google.com/detail/harbor-freight-coupons/hhbonmijejindhnfgcdggfdbklphhloj
설명 Automatically find and display harbor freight coupons on their website from hfqpdb.com
파일 크기 34.84 KB
설치 횟수 7,309
현재 버전 2.0.1
최근 업데이트 2019-09-05
출시 날짜 2019-09-04
평점 3.31/5 총 32 개의 평점
개발자 sclem
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://hfqpdb.com
개인정보 보호 정책 페이지 URL https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Harbor Freight Coupons",
    "short_name": "harbor freight coupon database extension",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "Automatically find and display harbor freight coupons on their website from hfqpdb.com",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon32.png"
    },
    "permissions": [
        "https:\/\/www.hfqpdb.com\/price_check\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.harborfreight.com\/*",
                "https:\/\/shop.harborfreight.com\/*"
            ],
            "js": [
                "helper.js",
                "coupons.js"
            ],
            "run_at": "document_idle"
        }
    ]
}