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是由Vite Labs開發的Chrome擴展程式,該擴展的主要功能是“Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…”。

擴展截圖

screenshot
screenshot
screenshot

下載Vite Passport擴展crx文件

下載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
官方網址 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": [
                ""
            ]
        }
    ]
}