Nuchain App
Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.
Qu'est-ce que Nuchain App ?
Nuchain App est une extension Chrome développée par nusantarachain, et sa fonction principale est "Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Nuchain App
Téléchargez les fichiers d'extension Nuchain App au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Nuchain App |
ID | hfcdboaniimgkememgmilhmnkdgggkne |
URL Officiel | https://chromewebstore.google.com/detail/nuchain-app/hfcdboaniimgkememgmilhmnkdgggkne |
Description | Manage your Nuchain keys and access Nuchain network seamlessly and secure from your browser. |
Taille du Fichier | 1.41 MB |
Nombre d'Installations | 30 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2021-07-06 |
Date de Publication | 2021-07-06 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | nusantarachain |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://nuchain.network |
URL de la Page de Politique de Confidentialité | https://nuchain.network/docs/general/privacy |
Langues Prises en Charge | 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" } |