Volt Wallet

Elegant wallet for the Vite ecosystem

Co to jest Volt Wallet?

Volt Wallet to rozszerzenie Chrome opracowane przez karl.schwtz, a jego główną funkcją jest „Elegant wallet for the Vite ecosystem”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Volt Wallet

Pobierz pliki rozszerzeń Volt Wallet 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

                        Volt Wallet is the unofficial non-custodial wallet that allows you to import accounts, manage assets and sign transactions on the Vite blockchain.

The extension injects a web3 API into every website's javascript context, so that dapps can read from the Vite blockchain. Its goal is to be a more convenient wallet compared to Vite connect.                    

Podstawowe informacje o rozszerzeniu

Nazwa Volt Wallet Volt Wallet
ID fiehfolhefpnoihmfggndpmibfgbpico
Oficjalny URL https://chromewebstore.google.com/detail/volt-wallet/fiehfolhefpnoihmfggndpmibfgbpico
Opis Elegant wallet for the Vite ecosystem
Rozmiar pliku 6.18 MB
Liczba instalacji 76
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2022-07-12
Data Publikacji 2022-04-04
Deweloper karl.schwtz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://extension.voltlabs.io
Adres URL Strony Pomocy https://github.com/0xkarl/vite-extension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Volt Wallet",
    "version": "0.3.1",
    "manifest_version": 3,
    "author": "Karl Schwtz ",
    "description": "Elegant wallet for the Vite ecosystem",
    "short_name": "volt",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "32": "images\/icon-32.png",
        "38": "images\/icon-38.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "512": "images\/icon-512.png"
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "32": "images\/icon-32.png",
            "38": "images\/icon-38.png",
            "64": "images\/icon-64.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png",
            "512": "images\/icon-512.png"
        },
        "default_title": "Vite",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}