Cyano Wallet

Cyano Wallet - an Ontology wallet

Cyano Wallet là gì?

Cyano Wallet là một tiện ích mở rộng Chrome được phát triển bởi cyano-publishing, và tính năng chính của nó là "Cyano Wallet - an Ontology wallet".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cyano Wallet

Tải xuống các tệp mở rộng Cyano Wallet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cyano Wallet Cyano Wallet
ID dkdedlpgdmmkkfjabffeganieamfklkm
URL Chính Thức https://chromewebstore.google.com/detail/cyano-wallet/dkdedlpgdmmkkfjabffeganieamfklkm
Mô tả Cyano Wallet - an Ontology wallet
Kích Thước Tệp 3.26 MB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 0.8.15
Cập Nhật Lần Cuối 2022-03-09
Ngày Phát Hành 2020-07-01
Đánh Giá 3.11/5 Tổng số 18 Đánh Giá
Nhà Phát Triển cyano-publishing
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ontio/cyano-wallet
URL Trang Trợ Giúp https://github.com/ontio/cyano-wallet
URL Trang Chính Sách Bảo Mật https://github.com/OntologyCommunityDevelopers/cyano-wallet/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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": []
    }
}