Saifu - Solana Wallet

The modular Solana Super-Wallet

Saifu - Solana Wallet란 무엇입니까?

Saifu - Solana Wallet은(는) https://saifuwallet.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The modular Solana Super-Wallet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Saifu - Solana Wallet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
        "*:\/\/*\/*"
    ]
}