iWallet
Wallet Extension for IOST
Hvad er iWallet?
iWallet er en Chrome-udvidelse udviklet af lucusfly, og dens hovedfunktion er "Wallet Extension for IOST".
Udvidelsesskærmbilleder
Download iWallet-udvidelses-CRX-fil
Download iWallet-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | iWallet |
ID | kncchdigobghenbbaddojjnnaogfppfj |
Officiel URL | https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj |
Beskrivelse | Wallet Extension for IOST |
Filstørrelse | 7.63 MB |
Antal Installationer | 20,000 |
Nuværende Version | 0.2.9 |
Senest Opdateret | 2022-01-13 |
Udgivelsesdato | 2020-02-07 |
Bedømmelse | 3.62/5 Samlet 29 Bedømmelser |
Udvikler | lucusfly |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy |
Understøttede Sprog | 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'" } |