Vend Age Restriction

This extension will determine a customers age before checkout

什麼是Vend Age Restriction?

Vend Age Restriction是由Lutes開發的Chrome擴展程式,該擴展的主要功能是“This extension will determine a customers age before checkout”。

擴展截圖

screenshot
screenshot
screenshot

下載Vend Age Restriction擴展crx文件

下載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
官方網址 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"
    ]
}