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.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Clear EVM Wallet (CLW)

قم بتنزيل ملفات الامتداد Clear EVM Wallet (CLW) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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) 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
عنوان صفحة المساعدة https://github.com/andrei0x309/clear-wallet
عنوان صفحة سياسة الخصوصية 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"
        ]
    }
}