Encrypt and decrypt some text.

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

Что такое Encrypt and decrypt some text.?

Encrypt and decrypt some text. - это расширение Chrome, разработанное vivekprmdev, и его основная функция - "This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Encrypt and decrypt some text.

Скачайте файлы расширений Encrypt and decrypt some text. в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Encrypt and decrypt some text. Encrypt and decrypt some text.
ID mppankopeeijjkpobngemnbmepbnlgci
Официальный URL https://chrome.google.com/webstore/detail/encrypt-and-decrypt-some/mppankopeeijjkpobngemnbmepbnlgci
Описание This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.
Размер файла 206 KB
Количество установок 14
Текущая Версия 0.1
Последнее Обновление 2019-03-29
Дата публикации 2019-03-26
Разработчик vivekprmdev
Тип оплаты free
Поддерживаемые языки 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"
    }
}