Cryptex
Encrypts text with AES cipher and a custom password.
Cryptex क्या है?
Cryptex Denis Cosmin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Encrypts text with AES cipher and a custom password."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cryptex एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |