iWallet

Wallet Extension for IOST

iWallet là gì?

iWallet là một tiện ích mở rộng Chrome được phát triển bởi lucusfly, và tính năng chính của nó là "Wallet Extension for IOST".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng iWallet

Tải xuống các tệp mở rộng iWallet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên iWallet iWallet
ID kncchdigobghenbbaddojjnnaogfppfj
URL Chính Thức https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj
Mô tả Wallet Extension for IOST
Kích Thước Tệp 7.63 MB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 0.2.9
Cập Nhật Lần Cuối 2022-01-13
Ngày Phát Hành 2020-02-07
Đánh Giá 3.62/5 Tổng số 29 Đánh Giá
Nhà Phát Triển lucusfly
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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'"
}