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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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