GeroWallet
A user friendly Cardano light wallet
GeroWallet là gì?
GeroWallet là một tiện ích mở rộng Chrome được phát triển bởi https://gerowallet.io, và tính năng chính của nó là "A user friendly Cardano light wallet".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GeroWallet
Tải xuống các tệp mở rộng GeroWallet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GeroWallet |
ID | bgpipimickeadkjlklgciifhnalhdjhe |
URL Chính Thức | https://chromewebstore.google.com/detail/gerowallet/bgpipimickeadkjlklgciifhnalhdjhe |
Mô tả | A user friendly Cardano light wallet |
Kích Thước Tệp | 4.07 MB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 1.15.1 |
Cập Nhật Lần Cuối | 2024-01-26 |
Ngày Phát Hành | 2021-08-13 |
Đánh Giá | 4.74/5 Tổng số 92 Đánh Giá |
Nhà Phát Triển | https://gerowallet.io |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gerowallet.io |
URL Trang Trợ Giúp | https://gerowallet.io/#contact |
URL Trang Chính Sách Bảo Mật | https://gerowallet.io/assets/downloads/PRIVACY_NOTICE.pdf |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |