Vend Age Restriction
This extension will determine a customers age before checkout
ما هو Vend Age Restriction؟
Vend Age Restriction هو إضافة Chrome تم تطويرها بواسطة Lutes، والميزة الرئيسية لها هي "This extension will determine a customers age before checkout".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vend Age Restriction
قم بتنزيل ملفات الامتداد Vend Age Restriction بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Enter the customers DOB from their ID while checking out in the Vend web register. Allows customized age restriction 18 years old, 21 years old, or even 5 years old.
معلومات أساسية عن التمديد
الاسم | Vend Age Restriction |
ID | behibmealfdflppiagmpcidhhbaojkmk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk |
الوصف | This extension will determine a customers age before checkout |
حجم الملف | 42.25 KB |
عدد التثبيتات | 192 |
النسخة الحالية | 1.5.0 |
آخر تحديث | 2016-08-09 |
تاريخ النشر | 2016-08-09 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | Lutes |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vend Age Restriction", "description": "This extension will determine a customers age before checkout", "version": "1.5.0", "browser_action": { "default_icon": "icon.png", "default_title": "Vend Age Restriction", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.vendhq.com\/webregister\/" ], "css": [ "ar_style.css" ], "js": [ "jquery.js", "content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "https:\/\/*.vendhq.com\/webregister\/", "storage" ] } |