HTML Inspector

Injects HTML Inspector snippet into pages

Wat is HTML Inspector?

HTML Inspector is een Chrome-extensie ontwikkeld door Nate Lubeck, en de belangrijkste functie is "Injects HTML Inspector snippet into pages".

Download het CRX-bestand van de extensie HTML Inspector

Download HTML Inspector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HTML Inspector HTML Inspector
ID ahkmbaaelhdbgfhdihoopmndbnppfima
Officiële URL https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima
Beschrijving Injects HTML Inspector snippet into pages
Bestandsgrootte 19.37 KB
Aantal Installaties 718
Huidige Versie 0.0.3
Laatst Bijgewerkt 2015-03-19
Publicatiedatum 2015-03-19
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Nate Lubeck
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}