Glitch Wallet
Glitch Wallet Extension
什么是Glitch Wallet?
Glitch Wallet是由Glitch Finance开发的Chrome扩展程序,该扩展的主要功能是“Glitch Wallet Extension”。
扩展截图
下载Glitch Wallet扩展crx文件
下载Glitch Wallet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Glitch Wallet |
ID | dlfmkkfemldamjkpoppljoiinkmlpegd |
官方URL | https://chromewebstore.google.com/detail/glitch-wallet/dlfmkkfemldamjkpoppljoiinkmlpegd |
简介 | Glitch Wallet Extension |
文件大小 | 2.59 MB |
安装次数 | 69 |
当前版本 | 1.5.0 |
更新时间 | 2023-06-22 |
上架时间 | 2023-06-22 |
评分 | 5.00/5 共8次评分 |
开发者 | Glitch Finance |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://glitch.finance/ |
帮助页面URL | https://glitch.finance/contact/ |
隐私政策页面URL | https://glitch.finance/privacy-policy |
支持的语言 | 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'" } } |