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"
    ]
}