Nuchain App
Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.
Cos'è Nuchain App?
Nuchain App è un'estensione di Chrome sviluppata da nusantarachain, e la sua funzione principale è "Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Nuchain App
Scarica i file di estensione Nuchain App in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Nuchain App |
ID | hfcdboaniimgkememgmilhmnkdgggkne |
URL Ufficiale | https://chromewebstore.google.com/detail/nuchain-app/hfcdboaniimgkememgmilhmnkdgggkne |
Descrizione | Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser. |
Dimensione del File | 1.41 MB |
Conteggio Installazioni | 30 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2021-07-06 |
Data di Pubblicazione | 2021-07-06 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | nusantarachain |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://nuchain.network |
URL della Pagina della Politica sulla Privacy | https://nuchain.network/docs/general/privacy |
Lingue Supportate | 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" } |