Vend Age Restriction

This extension will determine a customers age before checkout

Что такое Vend Age Restriction?

Vend Age Restriction - это расширение Chrome, разработанное Lutes, и его основная функция - "This extension will determine a customers age before checkout".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Vend Age Restriction

Скачайте файлы расширений Vend Age Restriction в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Vend Age Restriction Vend Age Restriction
ID behibmealfdflppiagmpcidhhbaojkmk
Официальный URL https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk
Описание This extension will determine a customers age before checkout
Размер файла 42.25 KB
Количество установок 192
Текущая Версия 1.5.0
Последнее Обновление 2016-08-09
Дата публикации 2016-08-09
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Lutes
Тип оплаты free
Поддерживаемые языки 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"
    ]
}