Encrypt and decrypt some text.

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

What is Encrypt and decrypt some text.?

Encrypt and decrypt some text. is a Chrome extension developed by vivekprmdev, and its main feature is "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.".

Extension Screenshots

screenshot

Download Encrypt and decrypt some text. Extension CRX File

Download Encrypt and decrypt some text. extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
Official URL https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Description This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
File Size 206 KB
Installation Count 14
Current Version 0.1
Last Updated 2019-03-29
Publish Date 2019-03-26
Developer vivekprmdev
Payment Type free
Supported Languages 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"
    }
}