Harbor Freight Coupons
Automatically find and display harbor freight coupons on their website from hfqpdb.com
Harbor Freight Coupons क्या है?
Harbor Freight Coupons sclem द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically find and display harbor freight coupons on their website from hfqpdb.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Harbor Freight Coupons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } ] } |