HTML Inspector

Injects HTML Inspector snippet into pages

HTML Inspectorคืออะไร?

HTML Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nate Lubeck และคุณลักษณะหลักของมันคือ "Injects HTML Inspector snippet into pages"

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

ดาวน์โหลดไฟล์ส่วนขยาย HTML Inspector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add Philip Walton's HTML inspector to your pages.

HTML Inspector is a code quality tool to help you and your team write better markup. It's written in JavaScript and runs in the browser, so testing your HTML has never been easier.

Press Cmd+I (Mac), Ctrl+I (Windows) to enable the HTML Inspector.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ HTML Inspector HTML Inspector
ID ahkmbaaelhdbgfhdihoopmndbnppfima
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima
คำอธิบาย Injects HTML Inspector snippet into pages
ขนาดไฟล์ 19.37 KB
จำนวนการติดตั้ง 718
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2015-03-19
วันที่เผยแพร่ 2015-03-19
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Nate Lubeck
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML Inspector",
    "description": "Injects HTML Inspector snippet into pages",
    "version": "0.0.3",
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "html-inspector.js"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "html-inspector.js"
            ]
        }
    ],
    "commands": {
        "Ctrl+I": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Ctrl+I"
            },
            "description": "Toggle HTML Inspector"
        }
    }
}