GeroWallet
A user friendly Cardano light wallet
O que é GeroWallet?
GeroWallet é uma extensão do Chrome desenvolvida por https://gerowallet.io, e sua principal característica é "A user friendly Cardano light wallet".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GeroWallet
Baixe arquivos de extensão GeroWallet 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
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.
Informações Básicas da Extensão
Nome | GeroWallet |
ID | bgpipimickeadkjlklgciifhnalhdjhe |
URL Oficial | https://chromewebstore.google.com/detail/gerowallet/bgpipimickeadkjlklgciifhnalhdjhe |
Descrição | A user friendly Cardano light wallet |
Tamanho do Arquivo | 4.07 MB |
Contagem de Instalações | 10,000 |
Versão Atual | 1.15.1 |
Última Atualização | 2024-01-26 |
Data de Publicação | 2021-08-13 |
Classificação | 4.74/5 Total de 92 Avaliações |
Desenvolvedor | https://gerowallet.io |
Tipo de Pagamento | free |
Site da Extensão | https://gerowallet.io |
URL da Página de Ajuda | https://gerowallet.io/#contact |
URL da Página de Política de Privacidade | https://gerowallet.io/assets/downloads/PRIVACY_NOTICE.pdf |
Idiomas Suportados | 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'" } |