Encrypt and decrypt some text.

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

Cos'è Encrypt and decrypt some text.?

Encrypt and decrypt some text. è un'estensione di Chrome sviluppata da vivekprmdev, e la sua funzione principale è "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Encrypt and decrypt some text.

Scarica i file di estensione Encrypt and decrypt some text. in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
URL Ufficiale https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Descrizione This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Dimensione del File 206 KB
Conteggio Installazioni 14
Versione Corrente 0.1
Ultimo Aggiornamento 2019-03-29
Data di Pubblicazione 2019-03-26
Sviluppatore vivekprmdev
Tipo di Pagamento free
Lingue Supportate 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"
    }
}