Vite Passport

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

Vad är Vite Passport?

Vite Passport är en Chrome-tillägg utvecklad av Vite Labs, och dess huvudfunktion är "Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Vite Passport-förlängningens CRX-fil

Ladda ner Vite Passport-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
Officiell webbadress https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
Beskrivning Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
Filstorlek 4.3 MB
Antal Installationer 434
Aktuell Version 1.0.5
Senast Uppdaterad 2022-09-25
Publiceringsdatum 2022-08-30
Utvecklare Vite Labs
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/vitelabs/vite-passport
Hjälpsida URL https://vite.org/
URL till Sekretesspolicy Sidan https://vite.org/privacy.html
Stödda Språk 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": [
                ""
            ]
        }
    ]
}