Nuchain App
Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.
Nuchain App là gì?
Nuchain App là một tiện ích mở rộng Chrome được phát triển bởi nusantarachain, và tính năng chính của nó là "Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Nuchain App
Tải xuống các tệp mở rộng Nuchain App 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
A simple browser extension that help you connect your Nuchain accounts to the Nuchain decentralized app without exposing your private key to the internet. This extension works as signer for on-chain app, the private key is stored locally on your browser and encrypted using your password. The extension will inject your public key (account) to the on-chain app, and on-chain app will then able to use the public key to make operation and will trigger the extension to popup and request approval from you to sign the operation without needs for the app to know your private key.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Nuchain App |
ID | hfcdboaniimgkememgmilhmnkdgggkne |
URL Chính Thức | https://chromewebstore.google.com/detail/nuchain-app/hfcdboaniimgkememgmilhmnkdgggkne |
Mô tả | Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser. |
Kích Thước Tệp | 1.41 MB |
Số Lần Cài Đặt | 30 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2021-07-06 |
Ngày Phát Hành | 2021-07-06 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | nusantarachain |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://nuchain.network |
URL Trang Chính Sách Bảo Mật | https://nuchain.network/docs/general/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Rantai Nusantara", "description": "Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.", "homepage_url": "https:\/\/nuchain.network", "name": "Nuchain App", "short_name": "Nuchain", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Nuchain", "default_popup": "index.html" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ "page.js" ], "content_security_policy": "script-src 'self' blob: 'unsafe-eval' 'wasm-eval'; object-src 'self'", "version": "0.1.0" } |