iWallet

Wallet Extension for IOST

Cos'è iWallet?

iWallet è un'estensione di Chrome sviluppata da lucusfly, e la sua funzione principale è "Wallet Extension for IOST".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione iWallet

Scarica i file di estensione iWallet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome iWallet iWallet
ID kncchdigobghenbbaddojjnnaogfppfj
URL Ufficiale https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj
Descrizione Wallet Extension for IOST
Dimensione del File 7.63 MB
Conteggio Installazioni 20,000
Versione Corrente 0.2.9
Ultimo Aggiornamento 2022-01-13
Data di Pubblicazione 2020-02-07
Valutazione 3.62/5 Totale 29 Valutazioni
Sviluppatore lucusfly
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy
Lingue Supportate 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'"
}