Glow - Solana Wallet BETA

A fast, easy to use Solana wallet

什麼是Glow - Solana Wallet BETA?

Glow - Solana Wallet BETA是由https://glow.app開發的Chrome擴展程式,該擴展的主要功能是“A fast, easy to use Solana wallet”。

擴展截圖

screenshot
screenshot
screenshot

下載Glow - Solana Wallet BETA擴展crx文件

下載Glow - Solana Wallet BETA擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Glow - Solana Wallet BETA Glow - Solana Wallet BETA
ID ojbcfhjmpigfobfclfflafhblgemeidi
官方網址 https://chromewebstore.google.com/detail/glow-solana-wallet-beta/ojbcfhjmpigfobfclfflafhblgemeidi
簡介 A fast, easy to use Solana wallet
檔案大小 3.4 MB
安裝次數 29,320
目前版本 0.60.0
更新時間 2023-08-26
上架時間 2022-04-14
評分 4.08/5 共 25 次評分
開發者 https://glow.app
電子郵箱 [email protected]
付費類型 free
擴展官網 https://glow.app
說明頁面URL https://glow.app/support
隱私政策頁面URL https://glow.app/privacy-policy
支援的語言 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"
            ]
        }
    ]
}