Harbor Freight Coupons
Automatically find and display harbor freight coupons on their website from hfqpdb.com
ما هو Harbor Freight Coupons؟
Harbor Freight Coupons هو إضافة Chrome تم تطويرها بواسطة sclem، والميزة الرئيسية لها هي "Automatically find and display harbor freight coupons on their website from hfqpdb.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Harbor Freight Coupons
قم بتنزيل ملفات الامتداد Harbor Freight Coupons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة سياسة الخصوصية | 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" } ] } |