Vite Passport

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

Co to jest Vite Passport?

Vite Passport to rozszerzenie Chrome opracowane przez Vite Labs, a jego główną funkcją jest „Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Vite Passport

Pobierz pliki rozszerzeń Vite Passport w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
Oficjalny URL https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
Opis Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
Rozmiar pliku 4.3 MB
Liczba instalacji 434
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2022-09-25
Data Publikacji 2022-08-30
Deweloper Vite Labs
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/vitelabs/vite-passport
Adres URL Strony Pomocy https://vite.org/
Adres URL Strony Polityki Prywatności https://vite.org/privacy.html
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}