HTML Decodifier

Decode HTML entities by pressing CMD+U

HTML Decodifierคืออะไร?

HTML Decodifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://mraffaele.com และคุณลักษณะหลักของมันคือ "Decode HTML entities by pressing CMD+U"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HTML Decodifier

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}