Cryptex

Encrypts text with AES cipher and a custom password.

Was ist Cryptex?

Cryptex ist eine Chrome-Erweiterung, die von Denis Cosmin entwickelt wurde, und ihr Hauptmerkmal ist "Encrypts text with AES cipher and a custom password.".

Cryptex-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cryptex-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # 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.                    

Grundlegende Informationen zur Erweiterung

Name Cryptex Cryptex
ID hkhbflghpnckpdllineikoeoadohgmbl
Offizielle URL https://chromewebstore.google.com/detail/cryptex/hkhbflghpnckpdllineikoeoadohgmbl
Beschreibung Encrypts text with AES cipher and a custom password.
Dateigröße 29.92 KB
Installationsanzahl 233
Aktuelle Version 1.2
Letztes Update 2016-08-23
Veröffentlichungsdatum 2016-08-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Denis Cosmin
Zahlungsart free
Erweiterungswebsite https://github.com/Metonimie/cryptex
Unterstützte Sprachen 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"
    }
}