Glitch Wallet
Glitch Wallet Extension
Glitch Wallet क्या है?
Glitch Wallet Glitch Finance द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Glitch Wallet Extension"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Glitch Wallet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } } |