Encrypt and decrypt some text.

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

Co to jest Encrypt and decrypt some text.?

Encrypt and decrypt some text. to rozszerzenie Chrome opracowane przez vivekprmdev, a jego główną funkcją jest „This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Encrypt and decrypt some text.

Pobierz pliki rozszerzeń Encrypt and decrypt some text. w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
Oficjalny URL https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Opis This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Rozmiar pliku 206 KB
Liczba instalacji 14
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2019-03-29
Data Publikacji 2019-03-26
Deweloper vivekprmdev
Typ Płatności free
Obsługiwane Języki 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"
    }
}