Glitch Wallet
Glitch Wallet Extension
Glitch Wallet là gì?
Glitch Wallet là một tiện ích mở rộng Chrome được phát triển bởi Glitch Finance, và tính năng chính của nó là "Glitch Wallet Extension".
Ả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 Glitch Wallet
Tải xuống các tệp mở rộng Glitch Wallet 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
Glitch wallet extension is the most user-friendly way to connect to the decentralised crypto world right at your fingertips. This is the official browser-extension wallet that will allow you to access GLITCH-enabled permissionless applications and other EVM-compatible dApps. Create a wallet, store your private keys safely, keep your cryptos secure, and easily connect to dApps. Glitch wallet is non-custodial and allows users to access it within minutes. This extension will continue to receive updates, and the full version with all the functionalities will go live once completed.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Glitch Wallet |
ID | dlfmkkfemldamjkpoppljoiinkmlpegd |
URL Chính Thức | https://chromewebstore.google.com/detail/glitch-wallet/dlfmkkfemldamjkpoppljoiinkmlpegd |
Mô tả | Glitch Wallet Extension |
Kích Thước Tệp | 2.59 MB |
Số Lần Cài Đặt | 69 |
Phiên Bản Hiện Tại | 1.5.0 |
Cập Nhật Lần Cuối | 2023-06-22 |
Ngày Phát Hành | 2023-06-22 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Glitch Finance |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://glitch.finance/ |
URL Trang Trợ Giúp | https://glitch.finance/contact/ |
URL Trang Chính Sách Bảo Mật | https://glitch.finance/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Glitch Wallet Extension", "version": "1.5.0", "manifest_version": 3, "name": "Glitch Wallet", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.bundle.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage", "clipboardRead", "clipboardWrite" ], "web_accessible_resources": [ { "resources": [ "page.bundle.js" ], "use_dynamic_url": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] }, { "resources": [ "icon-128.png", "icon-34.png" ], "matches": [] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" } } |