VerifyMyAge
Verification states in real time
VerifyMyAge란 무엇입니까?
VerifyMyAge은(는) https://verifymyage.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Verification states in real time"입니다.
확장 프로그램 스크린샷
VerifyMyAge 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Age verification status in real time. With the VerifyMyAge Chrome extension you can view your eBay & Amazon customers age verification statuses in real time within the orders view of your eBay and Amazon store. Additional order details can also be viewed via the extension side panel. Once installed, simply login to your existing VerifyMyAge account via the extension and you're ready to go.
확장 프로그램 기본 정보
이름 | VerifyMyAge |
ID | pnmijffpojdahngpkdncjimgdkkjehbj |
공식 URL | https://chromewebstore.google.com/detail/verifymyage/pnmijffpojdahngpkdncjimgdkkjehbj |
설명 | Verification states in real time |
파일 크기 | 23.42 KB |
설치 횟수 | 49 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2020-10-07 |
출시 날짜 | 2020-07-29 |
개발자 | https://verifymyage.co.uk |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://verifymyage.co.uk |
도움말 페이지 URL | https://verifymyage.co.uk/contact.html |
개인정보 보호 정책 페이지 URL | https://www.verifymyage.co.uk/privacy.html |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VerifyMyAge", "version": "1.0.4", "description": "Verification states in real time", "manifest_version": 2, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/vma.js" ], "css": [ "css\/vma.css" ] }, { "run_at": "document_end", "matches": [ "https:\/\/www.ebay.co.uk\/mys\/sold*", "https:\/\/ebay.co.uk\/mys\/sold*", "https:\/\/ebay.co.uk\/sh\/ord*", "https:\/\/www.ebay.co.uk\/sh\/ord*" ], "js": [ "js\/ebay.js" ] }, { "run_at": "document_end", "matches": [ "https:\/\/sellercentral.amazon.co.uk\/orders-v3*", "https:\/\/sellercentral.amazon.co.uk\/messaging\/contact*" ], "js": [ "js\/amazon.js" ], "all_frames": true } ], "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "browser_action": { "default_icon": { "16": "vma.png", "32": "vma.png", "48": "vma.png", "128": "vma.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |