Cryptex
Encrypts text with AES cipher and a custom password.
Cryptex là gì?
Cryptex là một tiện ích mở rộng Chrome được phát triển bởi Denis Cosmin, và tính năng chính của nó là "Encrypts text with AES cipher and a custom password.".
Tải xuống tệp CRX của tiện ích mở rộng Cryptex
Tải xuống các tệp mở rộng Cryptex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
# 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cryptex |
ID | hkhbflghpnckpdllineikoeoadohgmbl |
URL Chính Thức | https://chromewebstore.google.com/detail/cryptex/hkhbflghpnckpdllineikoeoadohgmbl |
Mô tả | Encrypts text with AES cipher and a custom password. |
Kích Thước Tệp | 29.92 KB |
Số Lần Cài Đặt | 233 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2016-08-23 |
Ngày Phát Hành | 2016-08-23 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Denis Cosmin |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Metonimie/cryptex |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |