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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } ] } |