Theta Wallet
Theta Wallet & gateway to blockchain apps on the Theta Network.
¿Qué es Theta Wallet?
Theta Wallet es una extensión de Chrome desarrollada por https://wallet.thetatoken.org, y su función principal es "Theta Wallet & gateway to blockchain apps on the Theta Network.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Theta Wallet
Descarga archivos de extensión Theta Wallet en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The Official Theta Wallet right in your Browser! This Theta Wallet is an extension for accessing distributed applications (Dapps) on the Theta Network right from your browser! This wallet also lets you create and manage your own accounts (via private keys, etc), so when a Dapp wants to perform a transaction and write to the Theta Blockchain, the user gets a secure interface to review the transaction, before approving or rejecting it.
Información Básica de la Extensión
Nombre | |
ID | ckelpdlfgochnkdgikcgbimdcfgpkhgk |
URL Oficial | https://chrome.google.com/webstore/detail/theta-wallet/ckelpdlfgochnkdgikcgbimdcfgpkhgk |
Descripción | Theta Wallet & gateway to blockchain apps on the Theta Network. |
Tamaño del Archivo | 1.43 MB |
Cantidad de Instalaciones | 14,612 |
Versión Actual | 3.2.0 |
Última Actualización | 2022-03-19 |
Fecha de Publicación | 2020-12-16 |
Calificación | 3.72/5 Total de 18 Calificaciones |
Desarrollador | https://wallet.thetatoken.org |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.thetatoken.org |
URL de la Página de Ayuda | https://docs.thetatoken.org |
URL de la Página de Política de Privacidad | https://www.thetatoken.org/privacy-policy |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "3.2.0", "manifest_version": 2, "name": "Theta Wallet", "description": "Theta Wallet & gateway to blockchain apps on the Theta Network.", "content_scripts": [ { "matches": [ "https:\/\/wallet.thetatoken.org\/theta-wallet-connect.html" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "16": "img\/extension-icon\/icon-16.png", "32": "img\/extension-icon\/icon-32.png", "64": "img\/extension-icon\/icon-64.png", "128": "img\/extension-icon\/icon-128.png" }, "default_popup": "popup.html" }, "permissions": [ "storage", "unlimitedStorage", "clipboardWrite", "activeTab", "notifications" ], "icons": { "16": "img\/extension-icon\/icon-16.png", "32": "img\/extension-icon\/icon-32.png", "64": "img\/extension-icon\/icon-64.png", "128": "img\/extension-icon\/icon-128.png" }, "web_accessible_resources": [ "inpage.js" ] } |