Encrypt and decrypt some text.

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

Wat is Encrypt and decrypt some text.?

Encrypt and decrypt some text. is een Chrome-extensie ontwikkeld door vivekprmdev, en de belangrijkste functie is "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Encrypt and decrypt some text.

Download Encrypt and decrypt some text.-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
Officiële URL https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Beschrijving This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Bestandsgrootte 206 KB
Aantal Installaties 14
Huidige Versie 0.1
Laatst Bijgewerkt 2019-03-29
Publicatiedatum 2019-03-26
Ontwikkelaar vivekprmdev
Betalingswijze free
Ondersteunde Talen 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"
    }
}