Cryptex
Encrypts text with AES cipher and a custom password.
Cryptexとは何ですか?
CryptexはDenis Cosminによって開発されたChromeの拡張機能で、その主な機能は「Encrypts text with AES cipher and a custom password.」です。
Cryptex拡張機能のCRXファイルをダウンロード
Cryptex拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
# 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.
拡張機能の基本情報
名前 | Cryptex |
ID | hkhbflghpnckpdllineikoeoadohgmbl |
公式URL | https://chromewebstore.google.com/detail/cryptex/hkhbflghpnckpdllineikoeoadohgmbl |
説明 | Encrypts text with AES cipher and a custom password. |
ファイルサイズ | 29.92 KB |
インストール数 | 233 |
現在のバージョン | 1.2 |
最終更新日 | 2016-08-23 |
公開日 | 2016-08-23 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Denis Cosmin |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Metonimie/cryptex |
対応言語 | 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" } } |