Harbor Freight Coupons

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

Harbor Freight Coupons là gì?

Harbor Freight Coupons là một tiện ích mở rộng Chrome được phát triển bởi sclem, và tính năng chính của nó là "Automatically find and display harbor freight coupons on their website from hfqpdb.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Harbor Freight Coupons

Tải xuống các tệp mở rộng Harbor Freight Coupons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Harbor Freight Coupons Harbor Freight Coupons
ID hhbonmijejindhnfgcdggfdbklphhloj
URL Chính Thức https://chromewebstore.google.com/detail/harbor-freight-coupons/hhbonmijejindhnfgcdggfdbklphhloj
Mô tả Automatically find and display harbor freight coupons on their website from hfqpdb.com
Kích Thước Tệp 34.84 KB
Số Lần Cài Đặt 7,309
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2019-09-05
Ngày Phát Hành 2019-09-04
Đánh Giá 3.31/5 Tổng số 32 Đánh Giá
Nhà Phát Triển sclem
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://hfqpdb.com
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}