Base64 Decoder

Decodes Base64 strings. Highlight the string and right-click.

Base64 Decoderとは何ですか?

Base64 Decoderはdragoonjによって開発されたChromeの拡張機能で、その主な機能は「Decodes Base64 strings. Highlight the string and right-click.」です。

Base64 Decoder拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This is a tiny extension that does just one thing: Decodes Base64 strings. 

To use, simply highlight the string you wish to decode, right-click it, and select 'Base64 Decode'.

Note: depending on the structure of the page, decoding the string may cause some funny formatting issues. Refresh the page to restore structure/formatting.                    

拡張機能の基本情報

名前 Base64 Decoder Base64 Decoder
ID ababhhiegjhaohnipcgjfgfeljakfhhc
公式URL https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc
説明 Decodes Base64 strings. Highlight the string and right-click.
ファイルサイズ 14.15 KB
インストール数 2,413
現在のバージョン 0.2
最終更新日 2013-03-13
公開日 2013-03-13
評価 4.08/5 合計 12 レビュー
開発者 dragoonj
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Base64 Decoder",
    "description": "Decodes Base64 strings. Highlight the string and right-click.",
    "version": "0.2",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "zepto.js",
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}