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 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"
    }
}