Cryptex
Encrypts text with AES cipher and a custom password.
What is Cryptex?
Cryptex is a Chrome extension developed by Denis Cosmin, and its main feature is "Encrypts text with AES cipher and a custom password.".
Download Cryptex Extension CRX File
Download Cryptex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
# 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.
Extension Basic Information
Name | Cryptex |
ID | hkhbflghpnckpdllineikoeoadohgmbl |
Official URL | https://chromewebstore.google.com/detail/cryptex/hkhbflghpnckpdllineikoeoadohgmbl |
Description | Encrypts text with AES cipher and a custom password. |
File Size | 29.92 KB |
Installation Count | 233 |
Current Version | 1.2 |
Last Updated | 2016-08-23 |
Publish Date | 2016-08-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Denis Cosmin |
Payment Type | free |
Extension Website | https://github.com/Metonimie/cryptex |
Supported Languages | 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" } } |