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 |
官方網址 | 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" } } |