HTML Inspector

Injects HTML Inspector snippet into pages

HTML Inspector là gì?

HTML Inspector là một tiện ích mở rộng Chrome được phát triển bởi Nate Lubeck, và tính năng chính của nó là "Injects HTML Inspector snippet into pages".

Tải xuống tệp CRX của tiện ích mở rộng HTML Inspector

Tải xuống các tệp mở rộng HTML Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HTML Inspector HTML Inspector
ID ahkmbaaelhdbgfhdihoopmndbnppfima
URL Chính Thức https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima
Mô tả Injects HTML Inspector snippet into pages
Kích Thước Tệp 19.37 KB
Số Lần Cài Đặt 718
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2015-03-19
Ngày Phát Hành 2015-03-19
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Nate Lubeck
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}