Vend Age Restriction

This extension will determine a customers age before checkout

Wat is Vend Age Restriction?

Vend Age Restriction is een Chrome-extensie ontwikkeld door Lutes, en de belangrijkste functie is "This extension will determine a customers age before checkout".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Vend Age Restriction

Download Vend Age Restriction-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Vend Age Restriction Vend Age Restriction
ID behibmealfdflppiagmpcidhhbaojkmk
Officiële URL https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk
Beschrijving This extension will determine a customers age before checkout
Bestandsgrootte 42.25 KB
Aantal Installaties 192
Huidige Versie 1.5.0
Laatst Bijgewerkt 2016-08-09
Publicatiedatum 2016-08-09
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Lutes
Betalingswijze free
Ondersteunde Talen 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"
    ]
}