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) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blog.flashsoft.eu และคุณลักษณะหลักของมันคือ "An open-source EVM wallet based on ethers, ionic, vue, that implements the metamask API, that works as drop in replacement."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clear EVM Wallet (CLW)
ดาวน์โหลดไฟล์ส่วนขยาย Clear EVM Wallet (CLW) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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": [ " |