Vend Age Restriction

This extension will determine a customers age before checkout

Vad är Vend Age Restriction?

Vend Age Restriction är en Chrome-tillägg utvecklad av Lutes, och dess huvudfunktion är "This extension will determine a customers age before checkout".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Vend Age Restriction-förlängningens CRX-fil

Ladda ner Vend Age Restriction-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Vend Age Restriction Vend Age Restriction
ID behibmealfdflppiagmpcidhhbaojkmk
Officiell webbadress https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk
Beskrivning This extension will determine a customers age before checkout
Filstorlek 42.25 KB
Antal Installationer 192
Aktuell Version 1.5.0
Senast Uppdaterad 2016-08-09
Publiceringsdatum 2016-08-09
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare Lutes
Betalningssätt free
Stödda Språk 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"
    ]
}