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文件

下載Harbor Freight Coupons擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}