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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下载Clear EVM Wallet (CLW)扩展crx文件

下载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) 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": [
                ""
            ],
            "resources": [
                "src\/extension\/inject.js"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/content.ts-9c488929.js",
                "assets\/inject.ts-6cadce92.js"
            ],
            "use_dynamic_url": true
        }
    ],
    "sandbox": {
        "pages": [
            "eval-sandbox.html"
        ]
    }
}