Vite Passport

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

Hvad er Vite Passport?

Vite Passport er en Chrome-udvidelse udviklet af Vite Labs, og dens hovedfunktion er "Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Vite Passport-udvidelses-CRX-fil

Download Vite Passport-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
Officiel URL https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
Beskrivelse Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
Filstørrelse 4.3 MB
Antal Installationer 434
Nuværende Version 1.0.5
Senest Opdateret 2022-09-25
Udgivelsesdato 2022-08-30
Udvikler Vite Labs
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/vitelabs/vite-passport
Hjælpeside-URL https://vite.org/
URL til Fortrolighedspolitik Side https://vite.org/privacy.html
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}