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.”。

擴展截圖

screenshot
screenshot

下載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 Nuchain App
ID hfcdboaniimgkememgmilhmnkdgggkne
官方網址 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"
}