Encrypt and decrypt some text.

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

¿Qué es Encrypt and decrypt some text.?

Encrypt and decrypt some text. es una extensión de Chrome desarrollada por vivekprmdev, y su función principal es "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Encrypt and decrypt some text.

Descarga archivos de extensión Encrypt and decrypt some text. en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
URL Oficial https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Descripción This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Tamaño del Archivo 206 KB
Cantidad de Instalaciones 14
Versión Actual 0.1
Última Actualización 2019-03-29
Fecha de Publicación 2019-03-26
Desarrollador vivekprmdev
Tipo de Pago free
Idiomas Soportados 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"
    }
}