Freighter

Freighter is a non-custodial wallet extension that enables you to sign Stellar transactions via your browser.

Что такое Freighter?

Freighter - это расширение Chrome, разработанное https://freighter.app, и его основная функция - "Freighter is a non-custodial wallet extension that enables you to sign Stellar transactions via your browser.".

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

screenshot
screenshot
screenshot

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

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

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

                        It's a safer alternative to copying and pasting private keys for use with Stellar-powered web applications. Please note:
* You store, control, and manage your own keys in your browser.  
* We do not store your private keys or account backup phrase. If you lose your key or backup phrase, you will permanently lose access to your account.                    

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

Название Freighter Freighter
ID bcacfldlkkdogcmkkibnjlakofdplcbk
Официальный URL https://chromewebstore.google.com/detail/freighter/bcacfldlkkdogcmkkibnjlakofdplcbk
Описание Freighter is a non-custodial wallet extension that enables you to sign Stellar transactions via your browser.
Размер файла 1.48 MB
Количество установок 8,419
Текущая Версия 5.17.2
Последнее Обновление 2024-03-04
Дата публикации 2020-11-12
Рейтинг 4.21/5 Всего 14 оценок
Разработчик https://freighter.app
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://freighter.app
URL страницы политики конфиденциальности https://stellar.org/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Freighter",
    "version": "5.17.2",
    "version_name": "5.17.2",
    "description": "Freighter is a non-custodial wallet extension that enables you to sign Stellar transactions via your browser.",
    "browser_specific_settings": {
        "gecko": {
            "id": "{3ee0dd4e-8c64-4b92-b539-25718a10f62f}",
            "strict_min_version": "48.0"
        }
    },
    "background": {
        "scripts": [
            "background.min.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.min.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "alarms"
    ],
    "manifest_version": 2
}