Cryptex
Encrypts text with AES cipher and a custom password.
Τι είναι το Cryptex;
Το Cryptex είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Denis Cosmin, και η κύρια λειτουργία του είναι "Encrypts text with AES cipher and a custom password.".
Λήψη αρχείου CRX της επέκτασης Cryptex
Λήψη αρχείων επέκτασης 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" } } |