Nuchain App
Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.
Nuchain App क्या है?
Nuchain App nusantarachain द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Nuchain App एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } |