Vend Age Restriction
This extension will determine a customers age before checkout
Co je Vend Age Restriction?
Vend Age Restriction je rozšíření Chrome vyvinuté Lutes, a jeho hlavní funkcí je „This extension will determine a customers age before checkout“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Vend Age Restriction
Stáhněte si soubory rozšíření Vend Age Restriction ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Vend Age Restriction |
ID | behibmealfdflppiagmpcidhhbaojkmk |
Oficiální URL | https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk |
Popis | This extension will determine a customers age before checkout |
Velikost souboru | 42.25 KB |
Počet instalací | 192 |
Aktuální Verze | 1.5.0 |
Poslední Aktualizace | 2016-08-09 |
Datum Vydání | 2016-08-09 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | Lutes |
Typ Platby | free |
Podporované Jazyky | 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" ] } |