Vend Age Restriction
This extension will determine a customers age before checkout
Qu'est-ce que Vend Age Restriction ?
Vend Age Restriction est une extension Chrome développée par Lutes, et sa fonction principale est "This extension will determine a customers age before checkout".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Vend Age Restriction
Téléchargez les fichiers d'extension Vend Age Restriction au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Vend Age Restriction |
ID | behibmealfdflppiagmpcidhhbaojkmk |
URL Officiel | https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk |
Description | This extension will determine a customers age before checkout |
Taille du Fichier | 42.25 KB |
Nombre d'Installations | 192 |
Version Actuelle | 1.5.0 |
Dernière Mise à Jour | 2016-08-09 |
Date de Publication | 2016-08-09 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Lutes |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |