iWallet

Wallet Extension for IOST

What is iWallet?

iWallet is a Chrome extension developed by lucusfly, and its main feature is "Wallet Extension for IOST".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download iWallet Extension CRX File

Download iWallet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name iWallet iWallet
ID kncchdigobghenbbaddojjnnaogfppfj
Official URL https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj
Description Wallet Extension for IOST
File Size 7.63 MB
Installation Count 20,000
Current Version 0.2.9
Last Updated 2022-01-13
Publish Date 2020-02-07
Rating 3.62/5 Total 29 Ratings
Developer lucusfly
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy
Supported Languages 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'"
}