GeroWallet

A user friendly Cardano light wallet

GeroWallet란 무엇입니까?

GeroWallet은(는) https://gerowallet.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A user friendly Cardano light wallet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GeroWallet 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A unique Cardano (ADA) Wallet for your browser.

GeroWallet is a cryptocurrency wallet extension for accessing Cardano powered dApps in your browser.

With a focus on user-experience, GeroWallet is built to accommodate the needs of new users and experts alike. Current features support:
-CardanoShield Integration for additional security
-Purchase of ADA
-Store, send & receive ADA and Cardano Native Tokens (CNTs)
-Hardware wallet support for Trezor & Ledger
-Delegation of ADA to Cardano Stake Pools (Staking)
-Creation of up to 8 wallets with customization options
-Store, display & send NFTs
-dApp Connector
-Multi-asset send
-$adahandle

Safety is our number one priority and as a non-custodial wallet, only you have access to your account and assets. Wallet capabilities will expand with in-wallet asset swaps, lending, borrowing and many more.                    

확장 프로그램 기본 정보

이름 GeroWallet GeroWallet
ID bgpipimickeadkjlklgciifhnalhdjhe
공식 URL https://chromewebstore.google.com/detail/gerowallet/bgpipimickeadkjlklgciifhnalhdjhe
설명 A user friendly Cardano light wallet
파일 크기 4.07 MB
설치 횟수 10,000
현재 버전 1.15.1
최근 업데이트 2024-01-26
출시 날짜 2021-08-13
평점 4.74/5 총 92 개의 평점
개발자 https://gerowallet.io
결제 유형 free
확장 프로그램 웹 사이트 https://gerowallet.io
도움말 페이지 URL https://gerowallet.io/#contact
개인정보 보호 정책 페이지 URL https://gerowallet.io/assets/downloads/PRIVACY_NOTICE.pdf
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GeroWallet",
    "short_name": "GeroWallet",
    "version": "1.15.1",
    "description": "A user friendly Cardano light wallet",
    "icons": {
        "16": ".\/assets\/img\/logo16.png",
        "48": ".\/assets\/img\/logo48.png",
        "128": ".\/assets\/img\/logo128.png"
    },
    "browser_action": {
        "default_popup": "index.html?#\/popup",
        "default_icon": {
            "16": ".\/assets\/img\/logo16.png",
            "48": ".\/assets\/img\/logo48.png",
            "128": ".\/assets\/img\/logo128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "clipboardRead",
        "chrome:\/\/favicon\/",
        "*:\/\/connect.trezor.io\/*"
    ],
    "web_accessible_resources": [
        "inject.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/connect.trezor.io\/*\/popup.html"
            ],
            "js": [
                ".\/assets\/vendor\/trezor-content-script.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentPage.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'"
}