Vite Passport

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

Co je Vite Passport?

Vite Passport je rozšíření Chrome vyvinuté Vite Labs, a jeho hlavní funkcí je „Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Vite Passport

Stáhněte si soubory rozšíření Vite Passport ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
Oficiální URL https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
Popis Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
Velikost souboru 4.3 MB
Počet instalací 434
Aktuální Verze 1.0.5
Poslední Aktualizace 2022-09-25
Datum Vydání 2022-08-30
Vývojář Vite Labs
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/vitelabs/vite-passport
URL Stránky Nápovědy https://vite.org/
URL Stránky Zásad Ochrany Soukromí https://vite.org/privacy.html
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}