iWallet

Wallet Extension for IOST

Wat is iWallet?

iWallet is een Chrome-extensie ontwikkeld door lucusfly, en de belangrijkste functie is "Wallet Extension for IOST".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie iWallet

Download iWallet-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam iWallet iWallet
ID kncchdigobghenbbaddojjnnaogfppfj
Officiële URL https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj
Beschrijving Wallet Extension for IOST
Bestandsgrootte 7.63 MB
Aantal Installaties 20,000
Huidige Versie 0.2.9
Laatst Bijgewerkt 2022-01-13
Publicatiedatum 2020-02-07
Beoordeling 3.62/5 Totaal 29 Beoordelingen
Ontwikkelaar lucusfly
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy
Ondersteunde Talen 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'"
}