Glow - Solana Wallet BETA

A fast, easy to use Solana wallet

O que é Glow - Solana Wallet BETA?

Glow - Solana Wallet BETA é uma extensão do Chrome desenvolvida por https://glow.app, e sua principal característica é "A fast, easy to use Solana wallet".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Glow - Solana Wallet BETA

Baixe arquivos de extensão Glow - Solana Wallet BETA no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Glow is the best way to get started with crypto on Solana. Solana is a super fast blockchain which resolves transactions in seconds without gas fees.

Glow gives you full control of your crypto. Unlike an exchange like Coinbase, you hold your secret keys. That means you have full control at your fingertips.

The Glow Browser Extension works by injecting a handler on webpages that allows you to interact with the website to sign in and approve transactions. You can buy NFTs, swap coins, play games, and try new experiences in the Solana ecosystem. 

We request permission to read and write to any webpage so that we can inject this handler on any webpage that wants to support Glow. But we take security seriously and do not store private user information on our servers or sell any data.                    

Informações Básicas da Extensão

Nome Glow - Solana Wallet BETA Glow - Solana Wallet BETA
ID ojbcfhjmpigfobfclfflafhblgemeidi
URL Oficial https://chromewebstore.google.com/detail/glow-solana-wallet-beta/ojbcfhjmpigfobfclfflafhblgemeidi
Descrição A fast, easy to use Solana wallet
Tamanho do Arquivo 3.4 MB
Contagem de Instalações 29,320
Versão Atual 0.60.0
Última Atualização 2023-08-26
Data de Publicação 2022-04-14
Classificação 4.08/5 Total de 25 Avaliações
Desenvolvedor https://glow.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://glow.app
URL da Página de Ajuda https://glow.app/support
URL da Página de Política de Privacidade https://glow.app/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.60.0",
    "description": "A fast, easy to use Solana wallet",
    "name": "Glow - Solana Wallet BETA",
    "permissions": [
        "storage",
        "tabs",
        "alarms",
        "webNavigation"
    ],
    "icons": {
        "256": "icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "*:\/\/localhost\/*"
            ],
            "js": [
                "realms\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "realms\/background.js"
    },
    "action": {
        "default_icon": "icon-256.png",
        "default_title": "Glow - Solana Wallet",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "realms\/inpage.js"
            ]
        }
    ]
}