GeroWallet Preview

Preview only version

Что такое GeroWallet Preview?

GeroWallet Preview - это расширение Chrome, разработанное GeroWallet, и его основная функция - "Preview only version".

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

screenshot

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

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

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

                        GeroWallet Preview ONLY version!

Http is wide open for localhost testing. 

This version will be frequently updated as new features are available.

Thank you for testing with us and helping us provide a better Cardano wallet.                    

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

Название GeroWallet Preview GeroWallet Preview
ID iifeegfcfhlhhnilhfoeihllenamcfgc
Официальный URL https://chromewebstore.google.com/detail/gerowallet-preview/iifeegfcfhlhhnilhfoeihllenamcfgc
Описание Preview only version
Размер файла 3.91 MB
Количество установок 623
Текущая Версия 1.14.3
Последнее Обновление 2023-07-28
Дата публикации 2022-01-09
Разработчик GeroWallet
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gerowallet.io/
URL страницы помощи https://gerowallet.io/#contact
URL страницы политики конфиденциальности https://gerowallet.io/assets/downloads/UserAgreement.pdf
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GeroWallet Preview",
    "short_name": "GeroWallet Preview",
    "version": "1.14.3",
    "description": "Preview only version",
    "icons": {
        "16": ".\/assets\/img\/logo16.png",
        "48": ".\/assets\/img\/logo48.png",
        "128": ".\/assets\/img\/logo128.png"
    },
    "browser_action": {
        "default_popup": "index.html?#\/popup",
        "default_icon": {
            "16": ".\/assets\/img\/logo16.png",
            "48": ".\/assets\/img\/logo48.png",
            "128": ".\/assets\/img\/logo128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "clipboardRead",
        "chrome:\/\/favicon\/",
        "*:\/\/connect.trezor.io\/*"
    ],
    "web_accessible_resources": [
        "inject.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/connect.trezor.io\/*\/popup.html"
            ],
            "js": [
                ".\/assets\/vendor\/trezor-content-script.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentPage.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'"
}