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
电子邮箱 [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
        }
    ]
}