iWallet

Wallet Extension for IOST

什麼是iWallet?

iWallet是由lucusfly開發的Chrome擴展程式,該擴展的主要功能是“Wallet Extension for IOST”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載iWallet擴展crx文件

下載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
官方網址 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'"
}