Iron Wallet

A developer-focused Ethereum wallet

Iron Walletคืออะไร?

Iron Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mpalhas และคุณลักษณะหลักของมันคือ "A developer-focused Ethereum wallet"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Iron Wallet

ดาวน์โหลดไฟล์ส่วนขยาย Iron Wallet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The companion extension to the Iron Wallet desktop app

Iron Wallet is an Ethereum Wallet that connects to your browser while providing an OS native safe & performant integration with Ethereum.

With the extension, you can connect Iron Wallet to any Ethereum-enabled application (or "Dapp"). The extension injects the Ethereum web3 API (as defined in EIP-1193), which dapps can connect to to read/write data to the blockchain.

Iron is focused on providing developer-oriented features such as tighter integration with Foundry & Anvil, the popular toolking for Ethereum development.
With Iron, you get access to faster feedback loops and automatic data resyncs when testing contracts locally. You can also enjoy features previously available only on live nets, such as the ability to impersonate addresses directly from your provider.

Iron Wallet also allows you to manage multiple identities (Wallets) and conenct different dapps to different wallets according to your preferences.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Iron Wallet Iron Wallet
ID eljobehkpcnpekmbcjiidekjhkbcnpkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/iron-wallet/eljobehkpcnpekmbcjiidekjhkbcnpkf
คำอธิบาย A developer-focused Ethereum wallet
ขนาดไฟล์ 314 KB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2023-12-26
วันที่เผยแพร่ 2023-08-21
ผู้พัฒนา mpalhas
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/iron-wallet
URL หน้าช่วยเหลือ https://github.com/iron-wallet/iron
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Iron Wallet",
    "description": "A developer-focused Ethereum wallet",
    "version": "1.4.0",
    "author": "Miguel Palhas ",
    "homepage_url": "https:\/\/github.com\/iron-wallet",
    "devtools_page": "devtools\/index.html",
    "minimum_chrome_version": "102",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                ".\/contentScript\/index.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": ".\/background\/background.js"
    },
    "options_ui": {
        "page": ".\/options\/index.html",
        "browser_style": false
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "\/inpage\/inpage.js",
                "devtools\/index.html",
                "panel\/index.html"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/iron-16.png",
        "48": "icons\/iron-48.png",
        "96": "icons\/iron-96.png",
        "128": "icons\/iron-128.png"
    }
}