Superhero
Superhero Wallet
Superhero란 무엇입니까?
Superhero은(는) Superhero Wallet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Superhero Wallet"입니다.
확장 프로그램 스크린샷
Superhero 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Connect to the Superhero community with the dedicated Superhero Wallet extension. Send and receive tips, store or withdraw AE Tokens, and participate in community voting to have your voice heard. Superhero gives you the power to tip anybody anywhere online or around the world — without third party interference, fees, or commissions. New Feature * support signing messages encoded as hex
확장 프로그램 기본 정보
이름 | Superhero |
ID | mnhmmkepfddpifjkamaligfeemcbhdne |
공식 URL | https://chromewebstore.google.com/detail/superhero/mnhmmkepfddpifjkamaligfeemcbhdne |
설명 | Superhero Wallet |
파일 크기 | 2.95 MB |
설치 횟수 | 859 |
현재 버전 | 2.1.6 |
최근 업데이트 | 2024-02-28 |
출시 날짜 | 2020-06-27 |
평점 | 4.91/5 총 11 개의 평점 |
개발자 | Superhero Wallet |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://superhero.com |
도움말 페이지 URL | https://github.com/aeternity/superhero-wallet |
개인정보 보호 정책 페이지 URL | https://superhero.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_security_policy": "default-src 'self'; script-src 'self' 'sha256-BCCVwoZgDUk\/cw+Ln2\/t3z9bm8qy+sICaZP5BWQIyUg='; connect-src *; font-src * data:; img-src * data:; style-src-elem * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; ", "name": "Superhero", "description": "Superhero Wallet", "manifest_version": 2, "applications": { "gecko": { "strict_min_version": "53.0" } }, "permissions": [ "storage", "unlimitedStorage", "activeTab", "clipboardWrite", "contextMenus", "notifications", "tabs", "webRequest", "webRequestBlocking", "webNavigation", "https:\/\/wallet.superhero.com\/*" ], "icons": { "48": ".\/icons\/icon_48.png", "128": ".\/icons\/icon_128.png" }, "browser_action": { "default_title": "Superhero", "default_popup": "index.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_start", "all_frames": true, "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/inject.js" ] } ], "web_accessible_resources": [ "js\/inject.js", "CameraRequestPermission.html", "index.html" ], "version": "2.1.6" } |