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.はvivekprmdevによって開発されたChromeの拡張機能で、その主な機能は「This plugin supports encryption, decryption, hashing, keyed hashing (HMAC) through various algorithms.」です。

拡張機能のスクリーンショット

screenshot

Encrypt and decrypt some text.拡張機能のCRXファイルをダウンロード

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"
    }
}