Vend Age Restriction

This extension will determine a customers age before checkout

¿Qué es Vend Age Restriction?

Vend Age Restriction es una extensión de Chrome desarrollada por Lutes, y su función principal es "This extension will determine a customers age before checkout".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Vend Age Restriction

Descarga archivos de extensión Vend Age Restriction en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Vend Age Restriction Vend Age Restriction
ID behibmealfdflppiagmpcidhhbaojkmk
URL Oficial https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk
Descripción This extension will determine a customers age before checkout
Tamaño del Archivo 42.25 KB
Cantidad de Instalaciones 192
Versión Actual 1.5.0
Última Actualización 2016-08-09
Fecha de Publicación 2016-08-09
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Lutes
Tipo de Pago free
Idiomas Soportados 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"
    ]
}