Saifu - Solana Wallet

The modular Solana Super-Wallet

Что такое Saifu - Solana Wallet?

Saifu - Solana Wallet - это расширение Chrome, разработанное https://saifuwallet.com, и его основная функция - "The modular Solana Super-Wallet".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Saifu - Solana Wallet

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

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

                        Saifu is the modular Solana wallet for Pro-Users, made for people that live in Web3 by people that do the same.

Stake, trade and explore the Solana ecosystem without ever leaving your wallet. Use the new full-screen view to get a quick glimpse over your assets, and never get left behind in the unknown.

Integrate Solana protocols right into Saifu through an open plugin system and customize it to fit your use-case perfectly!

Connect to web3 dApps through Saifus unique emulation layer by pretending it's Phantom or Slope. 

Saifu is here to help you get more out of DeFi - your new Solana companion that doesn't try to handhold you.                    

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

Название Saifu - Solana Wallet Saifu - Solana Wallet
ID ejdabmcenoflojakpkgjnilnohjoobac
Официальный URL https://chromewebstore.google.com/detail/saifu-solana-wallet/ejdabmcenoflojakpkgjnilnohjoobac
Описание The modular Solana Super-Wallet
Размер файла 5.2 MB
Количество установок 282
Текущая Версия 1.5.0
Последнее Обновление 2022-07-22
Дата публикации 2022-04-03
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://saifuwallet.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://saifuwallet.com
URL страницы помощи https://github.com/saifuwallet/saifu/issues/new
URL страницы политики конфиденциальности https://github.com/saifuwallet/saifu/blob/main/privacy-policy.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Saifu - Solana Wallet",
    "version": "1.5.0",
    "description": "The modular Solana Super-Wallet",
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "icons": {
        "128": "logo.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inpage.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "content_scripts": "script-src 'self' 'unsafe-inline';"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}