Harbor Freight Coupons
Automatically find and display harbor freight coupons on their website from hfqpdb.com
Co je Harbor Freight Coupons?
Harbor Freight Coupons je rozšíření Chrome vyvinuté sclem, a jeho hlavní funkcí je „Automatically find and display harbor freight coupons on their website from hfqpdb.com“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Harbor Freight Coupons
Stáhněte si soubory rozšíření Harbor Freight Coupons ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Harbor Freight Coupons |
ID | hhbonmijejindhnfgcdggfdbklphhloj |
Oficiální URL | https://chromewebstore.google.com/detail/harbor-freight-coupons/hhbonmijejindhnfgcdggfdbklphhloj |
Popis | Automatically find and display harbor freight coupons on their website from hfqpdb.com |
Velikost souboru | 34.84 KB |
Počet instalací | 7,309 |
Aktuální Verze | 2.0.1 |
Poslední Aktualizace | 2019-09-05 |
Datum Vydání | 2019-09-04 |
Hodnocení | 3.31/5 Celkem 32 Hodnocení |
Vývojář | sclem |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://hfqpdb.com |
URL Stránky Zásad Ochrany Soukromí | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
Podporované Jazyky | 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" } ] } |