Encrypt and decrypt some text.

This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.

Encrypt and decrypt some text.คืออะไร?

Encrypt and decrypt some text. เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vivekprmdev และคุณลักษณะหลักของมันคือ "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Encrypt and decrypt some text.

ดาวน์โหลดไฟล์ส่วนขยาย Encrypt and decrypt some text. ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This plugin can be used to encrypt, decrypt, hash text data.
Different algorithms can be selected and secret key can be specified.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
คำอธิบาย This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
ขนาดไฟล์ 206 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2019-03-29
วันที่เผยแพร่ 2019-03-26
ผู้พัฒนา vivekprmdev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Encrypt and decrypt some text.",
    "version": "0.1",
    "description": "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}