Vend Age Restriction
This extension will determine a customers age before checkout
Cos'è Vend Age Restriction?
Vend Age Restriction è un'estensione di Chrome sviluppata da Lutes, e la sua funzione principale è "This extension will determine a customers age before checkout".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Vend Age Restriction
Scarica i file di estensione Vend Age Restriction in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Vend Age Restriction |
ID | behibmealfdflppiagmpcidhhbaojkmk |
URL Ufficiale | https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk |
Descrizione | This extension will determine a customers age before checkout |
Dimensione del File | 42.25 KB |
Conteggio Installazioni | 192 |
Versione Corrente | 1.5.0 |
Ultimo Aggiornamento | 2016-08-09 |
Data di Pubblicazione | 2016-08-09 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Lutes |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |