Base 64 Decode

Add a right-click option to base64 decode text

Base 64 Decodeとは何ですか?

Base 64 Decodeはdylfによって開発されたChromeの拡張機能で、その主な機能は「Add a right-click option to base64 decode text」です。

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

screenshot

Base 64 Decode拡張機能のCRXファイルをダウンロード

Base 64 Decode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Have you ever needed to use base 64 decode on text in a web page? How about visiting a URL that is base 64 encoded?

This extension adds menu items for your right-click context menu when you select text that is base64 encoded on a page.                    

拡張機能の基本情報

名前 Base 64 Decode Base 64 Decode
ID cjjhhjjoenldlkfbdinpigfcpkhijhco
公式URL https://chromewebstore.google.com/detail/base-64-decode/cjjhhjjoenldlkfbdinpigfcpkhijhco
説明 Add a right-click option to base64 decode text
ファイルサイズ 8.48 KB
インストール数 196
現在のバージョン 1.0.0
最終更新日 2023-08-06
公開日 2022-11-13
評価 5.00/5 合計 1 レビュー
開発者 dylf
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/dylf/base64-decode-extension
ヘルプページのURL https://github.com/dylf/base64-decode-extension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
    "name": "Base 64 Decode",
    "version": "1.0.0",
    "description": "Add a right-click option to base64 decode text",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "module": true
    },
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "manifest_version": 3
}