Volt Wallet

Elegant wallet for the Vite ecosystem

Volt Walletคืออะไร?

Volt Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย karl.schwtz และคุณลักษณะหลักของมันคือ "Elegant wallet for the Vite ecosystem"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Volt Wallet

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                ""
            ]
        }
    ]
}