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