Vend Age Restriction
This extension will determine a customers age before checkout
Apa itu Vend Age Restriction?
Vend Age Restriction adalah ekstensi Chrome yang dikembangkan oleh Lutes, dan fitur utamanya adalah "This extension will determine a customers age before checkout".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Vend Age Restriction
Unduh file ekstensi Vend Age Restriction dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Vend Age Restriction |
ID | behibmealfdflppiagmpcidhhbaojkmk |
URL Resmi | https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk |
Deskripsi | This extension will determine a customers age before checkout |
Ukuran File | 42.25 KB |
Jumlah Instalasi | 192 |
Versi Saat Ini | 1.5.0 |
Terakhir Diperbarui | 2016-08-09 |
Tanggal Publikasi | 2016-08-09 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | Lutes |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |