Saifu - Solana Wallet

The modular Solana Super-Wallet

Cos'è Saifu - Solana Wallet?

Saifu - Solana Wallet è un'estensione di Chrome sviluppata da https://saifuwallet.com, e la sua funzione principale è "The modular Solana Super-Wallet".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Saifu - Solana Wallet

Scarica i file di estensione Saifu - Solana Wallet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Saifu - Solana Wallet Saifu - Solana Wallet
ID ejdabmcenoflojakpkgjnilnohjoobac
URL Ufficiale https://chromewebstore.google.com/detail/saifu-solana-wallet/ejdabmcenoflojakpkgjnilnohjoobac
Descrizione The modular Solana Super-Wallet
Dimensione del File 5.2 MB
Conteggio Installazioni 282
Versione Corrente 1.5.0
Ultimo Aggiornamento 2022-07-22
Data di Pubblicazione 2022-04-03
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://saifuwallet.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://saifuwallet.com
URL della Pagina di Aiuto https://github.com/saifuwallet/saifu/issues/new
URL della Pagina della Politica sulla Privacy https://github.com/saifuwallet/saifu/blob/main/privacy-policy.md
Lingue Supportate 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": [
        "*:\/\/*\/*"
    ]
}