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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |