HTML Decodifier

Decode HTML entities by pressing CMD+U

HTML Decodifierとは何ですか?

HTML Decodifierはhttp://mraffaele.comによって開発されたChromeの拡張機能で、その主な機能は「Decode HTML entities by pressing CMD+U」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Enables HTML decoding of any selected text in a textarea or a text input field.

Just select the text you wish to replace and hit CMD + U.

For example:

<div>Hello, world!</div>

Would become:

Hello, world!

拡張機能の基本情報

名前 HTML Decodifier HTML Decodifier
ID mbfgilcffilpfagibjbpjidjgbknnocd
公式URL https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd
説明 Decode HTML entities by pressing CMD+U
ファイルサイズ 50.21 KB
インストール数 30
現在のバージョン 0.0.3
最終更新日 2014-05-05
公開日 2014-05-05
開発者 http://mraffaele.com
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML Decodifier",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Decode HTML entities by pressing CMD+U",
    "homepage_url": "http:\/\/www.mraffaele.com",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/16.png",
            "38": "icons\/38.png"
        },
        "default_title": "HTML Decodifier",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.min.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.10.2.min.js",
                "js\/inject.min.js"
            ],
            "all_frames": true
        }
    ]
}