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”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |