Cryptex
Encrypts text with AES cipher and a custom password.
¿Qué es Cryptex?
Cryptex es una extensión de Chrome desarrollada por Denis Cosmin, y su función principal es "Encrypts text with AES cipher and a custom password.".
Descargar Archivo CRX de la Extensión Cryptex
Descarga archivos de extensión Cryptex 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
# Cryptex **This extension is partially finished!** This is my first extension, It's purpose is to encrypt text with AES cipher from [CryptoJS](https://github.com/sytelus/CryptoJS) using a locally stored passphrase. # How to use Enter the text you want to encrypt/decrypt in the text box and click the button. If you want to use a specific key, update the key field. If you want to reuse the key every time, hit the store button, the next time you start the extension the key field will be empty but the encryption and decryption process will use the stored key.
Información Básica de la Extensión
Nombre | Cryptex |
ID | hkhbflghpnckpdllineikoeoadohgmbl |
URL Oficial | https://chromewebstore.google.com/detail/cryptex/hkhbflghpnckpdllineikoeoadohgmbl |
Descripción | Encrypts text with AES cipher and a custom password. |
Tamaño del Archivo | 29.92 KB |
Cantidad de Instalaciones | 233 |
Versión Actual | 1.2 |
Última Actualización | 2016-08-23 |
Fecha de Publicación | 2016-08-23 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Denis Cosmin |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Metonimie/cryptex |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cryptex", "version": "1.2", "description": "Encrypts text with AES cipher and a custom password.", "homepage_url": "https:\/\/github.com\/Metonimie", "icons": { "32": "icons\/lock-icon-32.png", "48": "icons\/lock-icon-48.png", "128": "icons\/lock-icon-128.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": "icons\/lock-icon-32.png", "default_title": "Cryptex", "default_popup": "templates\/main_window.html" } } |