iWallet

Wallet Extension for IOST

iWalletคืออะไร?

iWallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lucusfly และคุณลักษณะหลักของมันคือ "Wallet Extension for IOST"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        iWallet is a tool for using IOST account and interacting with IOST DApps.

Source Code https://github.com/lucusfly/iost-extension/.

Privacy Policy https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy.                    

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

ชื่อ iWallet iWallet
ID kncchdigobghenbbaddojjnnaogfppfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj
คำอธิบาย Wallet Extension for IOST
ขนาดไฟล์ 7.63 MB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 0.2.9
อัปเดตครั้งล่าสุด 2022-01-13
วันที่เผยแพร่ 2020-02-07
คะแนน 3.62/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา lucusfly
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iWallet",
    "manifest_version": 2,
    "version": "0.2.9",
    "description": "Wallet Extension for IOST",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "iWallet"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "app\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "app\/content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "app\/inpage.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}