Vend Age Restriction

This extension will determine a customers age before checkout

Co to jest Vend Age Restriction?

Vend Age Restriction to rozszerzenie Chrome opracowane przez Lutes, a jego główną funkcją jest „This extension will determine a customers age before checkout”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Vend Age Restriction

Pobierz pliki rozszerzeń Vend Age Restriction w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Vend Age Restriction Vend Age Restriction
ID behibmealfdflppiagmpcidhhbaojkmk
Oficjalny URL https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk
Opis This extension will determine a customers age before checkout
Rozmiar pliku 42.25 KB
Liczba instalacji 192
Aktualna Wersja 1.5.0
Ostatnia Aktualizacja 2016-08-09
Data Publikacji 2016-08-09
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Lutes
Typ Płatności free
Obsługiwane Języki 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"
    ]
}