HTML Inspector

Injects HTML Inspector snippet into pages

Apa itu HTML Inspector?

HTML Inspector adalah ekstensi Chrome yang dikembangkan oleh Nate Lubeck, dan fitur utamanya adalah "Injects HTML Inspector snippet into pages".

Unduh Berkas CRX Ekstensi HTML Inspector

Unduh file ekstensi HTML Inspector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HTML Inspector HTML Inspector
ID ahkmbaaelhdbgfhdihoopmndbnppfima
URL Resmi https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima
Deskripsi Injects HTML Inspector snippet into pages
Ukuran File 19.37 KB
Jumlah Instalasi 718
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2015-03-19
Tanggal Publikasi 2015-03-19
Penilaian 3.00/5 Total 4 Penilaian
Pengembang Nate Lubeck
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    }
}