VerifyMyAge
Verification states in real time
VerifyMyAge là gì?
VerifyMyAge là một tiện ích mở rộng Chrome được phát triển bởi https://verifymyage.co.uk, và tính năng chính của nó là "Verification states in real time".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng VerifyMyAge
Tải xuống các tệp mở rộng VerifyMyAge dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | VerifyMyAge |
ID | pnmijffpojdahngpkdncjimgdkkjehbj |
URL Chính Thức | https://chromewebstore.google.com/detail/verifymyage/pnmijffpojdahngpkdncjimgdkkjehbj |
Mô tả | Verification states in real time |
Kích Thước Tệp | 23.42 KB |
Số Lần Cài Đặt | 49 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2020-10-07 |
Ngày Phát Hành | 2020-07-29 |
Nhà Phát Triển | https://verifymyage.co.uk |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://verifymyage.co.uk |
URL Trang Trợ Giúp | https://verifymyage.co.uk/contact.html |
URL Trang Chính Sách Bảo Mật | https://www.verifymyage.co.uk/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |