Cryptex
Encrypts text with AES cipher and a custom password.
Cos'è Cryptex?
Cryptex è un'estensione di Chrome sviluppata da Denis Cosmin, e la sua funzione principale è "Encrypts text with AES cipher and a custom password.".
Scarica il file CRX dell'estensione Cryptex
Scarica i file di estensione Cryptex 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
# 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.
Informazioni di Base sull'Estensione
Nome | Cryptex |
ID | hkhbflghpnckpdllineikoeoadohgmbl |
URL Ufficiale | https://chromewebstore.google.com/detail/cryptex/hkhbflghpnckpdllineikoeoadohgmbl |
Descrizione | Encrypts text with AES cipher and a custom password. |
Dimensione del File | 29.92 KB |
Conteggio Installazioni | 233 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2016-08-23 |
Data di Pubblicazione | 2016-08-23 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Denis Cosmin |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Metonimie/cryptex |
Lingue Supportate | 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" } } |