Harbor Freight Coupons
Automatically find and display harbor freight coupons on their website from hfqpdb.com
Hvad er Harbor Freight Coupons?
Harbor Freight Coupons er en Chrome-udvidelse udviklet af sclem, og dens hovedfunktion er "Automatically find and display harbor freight coupons on their website from hfqpdb.com".
Udvidelsesskærmbilleder
Download Harbor Freight Coupons-udvidelses-CRX-fil
Download Harbor Freight Coupons-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Harbor Freight Coupons |
ID | hhbonmijejindhnfgcdggfdbklphhloj |
Officiel URL | https://chromewebstore.google.com/detail/harbor-freight-coupons/hhbonmijejindhnfgcdggfdbklphhloj |
Beskrivelse | Automatically find and display harbor freight coupons on their website from hfqpdb.com |
Filstørrelse | 34.84 KB |
Antal Installationer | 7,309 |
Nuværende Version | 2.0.1 |
Senest Opdateret | 2019-09-05 |
Udgivelsesdato | 2019-09-04 |
Bedømmelse | 3.31/5 Samlet 32 Bedømmelser |
Udvikler | sclem |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://hfqpdb.com |
URL til Fortrolighedspolitik Side | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
Understøttede Sprog | 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" } ] } |