Vite Passport

Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…

Vite Passportคืออะไร?

Vite Passport เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vite Labs และคุณลักษณะหลักของมันคือ "Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vite Passport

ดาวน์โหลดไฟล์ส่วนขยาย Vite Passport ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Vite Passport is the official wallet extension from Vite Labs. With this extension you can:
- Create/Import a Vite wallet
- Send/Receive funds
- Connect to third party applications via the injected `vitePassport` API
- View account transaction history
- Switch/Add networks
- Derive/Switch accounts from the same mnemonics                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
คำอธิบาย Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
ขนาดไฟล์ 4.3 MB
จำนวนการติดตั้ง 434
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2022-09-25
วันที่เผยแพร่ 2022-08-30
ผู้พัฒนา Vite Labs
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vitelabs/vite-passport
URL หน้าช่วยเหลือ https://vite.org/
URL หน้านโยบายความเป็นส่วนตัว https://vite.org/privacy.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Vite Passport",
    "version": "1.0.5",
    "icons": {
        "1024": "src\/assets\/logo-blue-1024.png"
    },
    "action": {
        "default_title": "Vite Passport",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "src\/contentScript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/confirmation.html",
                "src\/injectedScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}