HTML Inspector

Injects HTML Inspector snippet into pages

What is HTML Inspector?

HTML Inspector is a Chrome extension developed by Nate Lubeck, and its main feature is "Injects HTML Inspector snippet into pages".

Download HTML Inspector Extension CRX File

Download HTML Inspector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name HTML Inspector HTML Inspector
ID ahkmbaaelhdbgfhdihoopmndbnppfima
Official URL https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima
Description Injects HTML Inspector snippet into pages
File Size 19.37 KB
Installation Count 718
Current Version 0.0.3
Last Updated 2015-03-19
Publish Date 2015-03-19
Rating 3.00/5 Total 4 Ratings
Developer Nate Lubeck
Payment Type free
Supported Languages 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"
        }
    }
}