Glitch Wallet
Glitch Wallet Extension
Was ist Glitch Wallet?
Glitch Wallet ist eine Chrome-Erweiterung, die von Glitch Finance entwickelt wurde, und ihr Hauptmerkmal ist "Glitch Wallet Extension".
Erweiterungsscreenshots
Glitch Wallet-Erweiterungs-CRX-Datei herunterladen
Laden Sie Glitch Wallet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Glitch Wallet |
ID | dlfmkkfemldamjkpoppljoiinkmlpegd |
Offizielle URL | https://chromewebstore.google.com/detail/glitch-wallet/dlfmkkfemldamjkpoppljoiinkmlpegd |
Beschreibung | Glitch Wallet Extension |
Dateigröße | 2.59 MB |
Installationsanzahl | 69 |
Aktuelle Version | 1.5.0 |
Letztes Update | 2023-06-22 |
Veröffentlichungsdatum | 2023-06-22 |
Bewertung | 5.00/5 Insgesamt 8 Bewertungen |
Entwickler | Glitch Finance |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://glitch.finance/ |
Hilfeseite URL | https://glitch.finance/contact/ |
URL der Datenschutzrichtlinien-Seite | https://glitch.finance/privacy-policy |
Unterstützte Sprachen | 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'" } } |