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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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'"
} | |