iWallet
Wallet Extension for IOST
什么是iWallet?
iWallet是由lucusfly开发的Chrome扩展程序,该扩展的主要功能是“Wallet Extension for IOST”。
扩展截图
下载iWallet扩展crx文件
下载iWallet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | iWallet |
ID | kncchdigobghenbbaddojjnnaogfppfj |
官方URL | https://chromewebstore.google.com/detail/iwallet/kncchdigobghenbbaddojjnnaogfppfj |
简介 | Wallet Extension for IOST |
文件大小 | 7.63 MB |
安装次数 | 20,000 |
当前版本 | 0.2.9 |
更新时间 | 2022-01-13 |
上架时间 | 2020-02-07 |
评分 | 3.62/5 共29次评分 |
开发者 | lucusfly |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://github.com/lucusfly/iost-extension/wiki/IOST-Extension-Privacy-Policy |
支持的语言 | 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'" } |