VerifyMyAge
Verification states in real time
VerifyMyAgeคืออะไร?
VerifyMyAge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://verifymyage.co.uk และคุณลักษณะหลักของมันคือ "Verification states in real time"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VerifyMyAge
ดาวน์โหลดไฟล์ส่วนขยาย VerifyMyAge ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |