Encrypt and decrypt some text.

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

Co je Encrypt and decrypt some text.?

Encrypt and decrypt some text. je rozšíření Chrome vyvinuté vivekprmdev, a jeho hlavní funkcí je „This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Encrypt and decrypt some text.

Stáhněte si soubory rozšíření Encrypt and decrypt some text. ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
Oficiální URL https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Popis This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Velikost souboru 206 KB
Počet instalací 14
Aktuální Verze 0.1
Poslední Aktualizace 2019-03-29
Datum Vydání 2019-03-26
Vývojář vivekprmdev
Typ Platby free
Podporované Jazyky 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"
    }
}