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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}