Clear EVM Wallet (CLW)
An open-source EVM wallet based on ethers, ionic, vue, that implements the metamask API, that works as drop in replacement.
Clear EVM Wallet (CLW)란 무엇입니까?
Clear EVM Wallet (CLW)은(는) https://blog.flashsoft.eu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An open-source EVM wallet based on ethers, ionic, vue, that implements the metamask API, that works as drop in replacement."입니다.
확장 프로그램 스크린샷
Clear EVM Wallet (CLW) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is a light fully open-source EVM wallet based on Ethers, Ionic, Manifest V3, and Vue. It implements Metamask API, so in order to interact with DApps you need to select Metamask. If website implements EIP-6963 DApps will detect this wallet as Clear Wallet. Repo on GitHub: https://github.com/andrei0x309/clear-wallet Docs Website: https://clear-wallet.flashsoft.eu/ At the time of its first release was ~47.2 times smaller than metamask. # Changelog: https://github.com/andrei0x309/clear-wallet/blob/main/CHANGELOG.md
확장 프로그램 기본 정보
이름 | Clear EVM Wallet (CLW) |
ID | djlahdpfkflehaepgohnnodmaajabdlg |
공식 URL | https://chromewebstore.google.com/detail/clear-evm-wallet-clw/djlahdpfkflehaepgohnnodmaajabdlg |
설명 | An open-source EVM wallet based on ethers, ionic, vue, that implements the metamask API, that works as drop in replacement. |
파일 크기 | 393 KB |
설치 횟수 | 132 |
현재 버전 | 1.3.3 |
최근 업데이트 | 2024-02-12 |
출시 날짜 | 2022-10-19 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://blog.flashsoft.eu |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/andrei0x309/clear-wallet |
도움말 페이지 URL | https://github.com/andrei0x309/clear-wallet |
개인정보 보호 정책 페이지 URL | https://github.com/andrei0x309/yup-live-chrome-extension/blob/main/PRIVACY_POLICY.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.3.3", "version_name": "1.3.3", "icons": { "16": "assets\/extension-icon\/wallet_16.png", "32": "assets\/extension-icon\/wallet_32.png", "48": "assets\/extension-icon\/wallet_48.png", "128": "assets\/extension-icon\/wallet_128.png" }, "action": { "default_popup": "index.html", "default_icon": { "16": "assets\/extension-icon\/wallet_16.png", "32": "assets\/extension-icon\/wallet_32.png", "48": "assets\/extension-icon\/wallet_48.png", "128": "assets\/extension-icon\/wallet_128.png" } }, "minimum_chrome_version": "103", "permissions": [ "notifications", "activeTab", "storage", "alarms", "unlimitedStorage", "clipboardRead", "clipboardWrite", "contextMenus", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "content_scripts": [ { "js": [ "src\/extension\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_start" }, { "js": [ "src\/extension\/inject.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_start", "world": "MAIN" } ], "web_accessible_resources": [ { "matches": [ " |