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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 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"
}