Cyano Wallet

Cyano Wallet - an Ontology wallet

Cyano Wallet란 무엇입니까?

Cyano Wallet은(는) cyano-publishing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cyano Wallet - an Ontology wallet"입니다.

확장 프로그램 스크린샷

screenshot

Cyano Wallet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        WebExtension wallet for the Ontology blockchain compatible with Chrome.

Security
When using this extension be responsible. You can follow some of these security tips:

* Divide your assets between Cold (little use) and Hot (active use) wallet
* Regularly check your balances
* Use hardware wallet for your Cold wallet
* Do not use Smart contract whitelisting on your Cold wallet


What does it currently do:

Create a wallet using mnemonics phrase
Encrypt a Private Key
Login with Mnemonics phrase, Private Key or a stored account.
Wallet Export/Import
Ledger support
Trezor support
View balance
Send ONG and ONT
Withdraw (claim) ONG
Switch networks (Test/Main/Private) with TLS support
ONT ID support
Ontology dAPI support
NEO and ONT address support for normal and Ledger accounts
OEP-4 tokens

Privacy policy
Visit https://github.com/ontio-community/cyano-wallet/blob/master/PRIVACY.md to see the whole privacy policy.                    

확장 프로그램 기본 정보

이름 Cyano Wallet Cyano Wallet
ID dkdedlpgdmmkkfjabffeganieamfklkm
공식 URL https://chromewebstore.google.com/detail/cyano-wallet/dkdedlpgdmmkkfjabffeganieamfklkm
설명 Cyano Wallet - an Ontology wallet
파일 크기 3.26 MB
설치 횟수 5,000
현재 버전 0.8.15
최근 업데이트 2022-03-09
출시 날짜 2020-07-01
평점 3.11/5 총 18 개의 평점
개발자 cyano-publishing
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ontio/cyano-wallet
도움말 페이지 URL https://github.com/ontio/cyano-wallet
개인정보 보호 정책 페이지 URL https://github.com/OntologyCommunityDevelopers/cyano-wallet/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cyano Wallet",
    "author": "Matus Zamborsky ",
    "description": "Cyano Wallet - an Ontology wallet",
    "version": "0.8.15",
    "browser_action": {
        "default_title": "Cyano Wallet"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/static\/js\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "32": "logo32.png",
        "48": "favicon.png",
        "128": "logo.png"
    },
    "permissions": [
        "storage",
        "http:\/\/127.0.0.1\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "externally_connectable": {
        "ids": []
    }
}