Encrypt and decrypt some text.

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

Qu'est-ce que Encrypt and decrypt some text. ?

Encrypt and decrypt some text. est une extension Chrome développée par vivekprmdev, et sa fonction principale est "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Encrypt and decrypt some text.

Téléchargez les fichiers d'extension Encrypt and decrypt some text. au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
URL Officiel https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Description This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Taille du Fichier 206 KB
Nombre d'Installations 14
Version Actuelle 0.1
Dernière Mise à Jour 2019-03-29
Date de Publication 2019-03-26
Développeur vivekprmdev
Type de Paiement free
Langues Prises en Charge 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"
    }
}