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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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": [
                ""
            ]
        }
    ]
}