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.
拡張機能の基本情報
名前 | 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" ] } |