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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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'"
}
} | |