Vite Passport

Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…

Что такое Vite Passport?

Vite Passport - это расширение Chrome, разработанное Vite Labs, и его основная функция - "Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Vite Passport

Скачайте файлы расширений Vite Passport в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Vite Passport is the official wallet extension from Vite Labs. With this extension you can:
- Create/Import a Vite wallet
- Send/Receive funds
- Connect to third party applications via the injected `vitePassport` API
- View account transaction history
- Switch/Add networks
- Derive/Switch accounts from the same mnemonics                    

Основная информация о расширении

Название Vite Passport Vite Passport
ID eckbjklobbepbbcklkjjgkkkpdakglmf
Официальный URL https://chromewebstore.google.com/detail/vite-passport/eckbjklobbepbbcklkjjgkkkpdakglmf
Описание Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…
Размер файла 4.3 MB
Количество установок 434
Текущая Версия 1.0.5
Последнее Обновление 2022-09-25
Дата публикации 2022-08-30
Разработчик Vite Labs
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/vitelabs/vite-passport
URL страницы помощи https://vite.org/
URL страницы политики конфиденциальности https://vite.org/privacy.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Vite Passport",
    "version": "1.0.5",
    "icons": {
        "1024": "src\/assets\/logo-blue-1024.png"
    },
    "action": {
        "default_title": "Vite Passport",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "src\/contentScript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/confirmation.html",
                "src\/injectedScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}