Nuchain App

Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.

Nuchain Appคืออะไร?

Nuchain App เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nusantarachain และคุณลักษณะหลักของมันคือ "Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nuchain App

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}