HTML Inspector
Injects HTML Inspector snippet into pages
Cos'è HTML Inspector?
HTML Inspector è un'estensione di Chrome sviluppata da Nate Lubeck, e la sua funzione principale è "Injects HTML Inspector snippet into pages".
Scarica il file CRX dell'estensione HTML Inspector
Scarica i file di estensione HTML Inspector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ahkmbaaelhdbgfhdihoopmndbnppfima |
URL Ufficiale | https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima |
Descrizione | Injects HTML Inspector snippet into pages |
Dimensione del File | 19.37 KB |
Conteggio Installazioni | 718 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2015-03-19 |
Data di Pubblicazione | 2015-03-19 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | Nate Lubeck |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |