Volt Wallet

Elegant wallet for the Vite ecosystem

What is Volt Wallet?

Volt Wallet is a Chrome extension developed by karl.schwtz, and its main feature is "Elegant wallet for the Vite ecosystem".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Volt Wallet Extension CRX File

Download Volt Wallet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Volt Wallet Volt Wallet
ID fiehfolhefpnoihmfggndpmibfgbpico
Official URL https://chromewebstore.google.com/detail/volt-wallet/fiehfolhefpnoihmfggndpmibfgbpico
Description Elegant wallet for the Vite ecosystem
File Size 6.18 MB
Installation Count 76
Current Version 0.3.1
Last Updated 2022-07-12
Publish Date 2022-04-04
Developer karl.schwtz
Email [email protected]
Payment Type free
Extension Website https://extension.voltlabs.io
Help Page URL https://github.com/0xkarl/vite-extension/issues
Supported Languages 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": [
                ""
            ]
        }
    ]
}