Harbor Freight Coupons
Automatically find and display harbor freight coupons on their website from hfqpdb.com
Was ist Harbor Freight Coupons?
Harbor Freight Coupons ist eine Chrome-Erweiterung, die von sclem entwickelt wurde, und ihr Hauptmerkmal ist "Automatically find and display harbor freight coupons on their website from hfqpdb.com".
Erweiterungsscreenshots
Harbor Freight Coupons-Erweiterungs-CRX-Datei herunterladen
Laden Sie Harbor Freight Coupons-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Harbor Freight Coupons |
ID | hhbonmijejindhnfgcdggfdbklphhloj |
Offizielle URL | https://chromewebstore.google.com/detail/harbor-freight-coupons/hhbonmijejindhnfgcdggfdbklphhloj |
Beschreibung | Automatically find and display harbor freight coupons on their website from hfqpdb.com |
Dateigröße | 34.84 KB |
Installationsanzahl | 7,309 |
Aktuelle Version | 2.0.1 |
Letztes Update | 2019-09-05 |
Veröffentlichungsdatum | 2019-09-04 |
Bewertung | 3.31/5 Insgesamt 32 Bewertungen |
Entwickler | sclem |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://hfqpdb.com |
URL der Datenschutzrichtlinien-Seite | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
Unterstützte Sprachen | 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" } ] } |