iWallet
Wallet Extension for IOST
iWallet란 무엇입니까?
iWallet은(는) lucusfly에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Wallet Extension for IOST"입니다.
확장 프로그램 스크린샷
iWallet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |