Curium
Browser extension wallet for the Bluzelle network.
Curium란 무엇입니까?
Curium은(는) https://bluzelle.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension wallet for the Bluzelle network."입니다.
확장 프로그램 스크린샷
Curium 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser extension wallet for the Bluzelle network. Bluzelle is a decentralized network with its own BLZ token. Install this extension and let the extension handle management of your mnemonic. Without the extension, you have to manually keep record of this precious mnemonic, and paste it into the browser app everytime you want to sign a transaction. With the extension, the mnemonic (and HD-derived keys) are owned and managed by the extension. Transactions are handed over to the extension, and it signs them. You as the user no longer need to manager this precious information. You do need to remember your password, in order to login, and we recommend you always keep a backup of your mnemonic to a file on a medium (like USB stick) where you can recover the key, if for example your PC loses its data, etc.
확장 프로그램 기본 정보
이름 | Curium |
ID | pccfbcbdplhbfnaffdfdndnigkammdob |
공식 URL | https://chromewebstore.google.com/detail/curium/pccfbcbdplhbfnaffdfdndnigkammdob |
설명 | Browser extension wallet for the Bluzelle network. |
파일 크기 | 10.64 MB |
설치 횟수 | 38 |
현재 버전 | 0.8.8 |
최근 업데이트 | 2021-07-17 |
출시 날짜 | 2021-07-14 |
개발자 | https://bluzelle.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Curium", "description": "Browser extension wallet for the Bluzelle network.", "version": "0.8.8", "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "Curium" }, "background": { "scripts": [ "browser-polyfill.js", "background.bundle.js" ], "persistent": true }, "permissions": [ "storage", "notifications", "https:\/\/staking.bluzelle.com\/*", "https:\/\/staging.staking.bluzelle.com\/*", "http:\/\/integration.staking.bluzelle.com\/*", "https:\/\/callofdata.bluzelle.com\/*", "https:\/\/bluzelle.github.io\/call-of-data\/*" ], "content_scripts": [ { "matches": [ "https:\/\/staking.bluzelle.com\/*", "https:\/\/staging.staking.bluzelle.com\/*", "http:\/\/integration.staking.bluzelle.com\/*", "https:\/\/callofdata.bluzelle.com\/*", "https:\/\/bluzelle.github.io\/call-of-data\/*" ], "js": [ "browser-polyfill.js", "contentScripts.bundle.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "injectedScript.bundle.js", "assets\/temp-icon.svg" ] } |