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.是由vivekprmdev開發的Chrome擴展程式,該擴展的主要功能是“This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.”。

擴展截圖

screenshot

下載Encrypt and decrypt some text.擴展crx文件

下載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
官方網址 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"
    }
}