iWallet

Wallet Extension for IOST

Qu'est-ce que iWallet ?

iWallet est une extension Chrome développée par lucusfly, et sa fonction principale est "Wallet Extension for IOST".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension iWallet

Téléchargez les fichiers d'extension iWallet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom iWallet iWallet
ID kncchdigobghenbbaddojjnnaogfppfj
URL Officiel https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj
Description Wallet Extension for IOST
Taille du Fichier 7.63 MB
Nombre d'Installations 20,000
Version Actuelle 0.2.9
Dernière Mise à Jour 2022-01-13
Date de Publication 2020-02-07
Évaluation 3.62/5 Total 29 Évaluations
Développeur lucusfly
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy
Langues Prises en Charge 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'"
}