Vite Passport

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

Cos'è Vite Passport?

Vite Passport è un'estensione di Chrome sviluppata da Vite Labs, e la sua funzione principale è "Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Vite Passport

Scarica i file di estensione Vite Passport in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
URL Ufficiale https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
Descrizione Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
Dimensione del File 4.3 MB
Conteggio Installazioni 434
Versione Corrente 1.0.5
Ultimo Aggiornamento 2022-09-25
Data di Pubblicazione 2022-08-30
Sviluppatore Vite Labs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/vitelabs/vite-passport
URL della Pagina di Aiuto https://vite.org/
URL della Pagina della Politica sulla Privacy https://vite.org/privacy.html
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}