Glitch Wallet
Glitch Wallet Extension
Glitch Wallet란 무엇입니까?
Glitch Wallet은(는) Glitch Finance에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Glitch Wallet Extension"입니다.
확장 프로그램 스크린샷
Glitch Wallet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } } |