Nuchain App
Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.
什么是Nuchain App?
Nuchain App是由nusantarachain开发的Chrome扩展程序,该扩展的主要功能是“Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.”。
扩展截图
下载Nuchain App扩展crx文件
下载Nuchain App扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Nuchain App |
ID | hfcdboaniimgkememgmilhmnkdgggkne |
官方URL | https://chromewebstore.google.com/detail/nuchain-app/hfcdboaniimgkememgmilhmnkdgggkne |
简介 | Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser. |
文件大小 | 1.41 MB |
安装次数 | 30 |
当前版本 | 0.1.0 |
更新时间 | 2021-07-06 |
上架时间 | 2021-07-06 |
评分 | 5.00/5 共5次评分 |
开发者 | nusantarachain |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://nuchain.network |
隐私政策页面URL | https://nuchain.network/docs/general/privacy |
支持的语言 | 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" } |