Volt Wallet

Elegant wallet for the Vite ecosystem

什么是Volt Wallet?

Volt Wallet是由karl.schwtz开发的Chrome扩展程序,该扩展的主要功能是“Elegant wallet for the Vite ecosystem”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Volt Wallet扩展crx文件

下载Volt Wallet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Volt Wallet Volt Wallet
ID fiehfolhefpnoihmfggndpmibfgbpico
官方URL https://chromewebstore.google.com/detail/volt-wallet/fiehfolhefpnoihmfggndpmibfgbpico
简介 Elegant wallet for the Vite ecosystem
文件大小 6.18 MB
安装次数 76
当前版本 0.3.1
更新时间 2022-07-12
上架时间 2022-04-04
开发者 karl.schwtz
电子邮箱 [email protected]
付费类型 free
扩展官网 https://extension.voltlabs.io
帮助页面URL https://github.com/0xkarl/vite-extension/issues
支持的语言 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": [
                ""
            ]
        }
    ]
}