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