HTML Inspector
Injects HTML Inspector snippet into pages
HTML Inspectorとは何ですか?
HTML InspectorはNate Lubeckによって開発されたChromeの拡張機能で、その主な機能は「Injects HTML Inspector snippet into pages」です。
HTML Inspector拡張機能のCRXファイルをダウンロード
HTML Inspector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | ahkmbaaelhdbgfhdihoopmndbnppfima |
公式URL | https://chrome.google.com/webstore/detail/html-inspector/ahkmbaaelhdbgfhdihoopmndbnppfima |
説明 | Injects HTML Inspector snippet into pages |
ファイルサイズ | 19.37 KB |
インストール数 | 718 |
現在のバージョン | 0.0.3 |
最終更新日 | 2015-03-19 |
公開日 | 2015-03-19 |
評価 | 3.00/5 合計 4 レビュー |
開発者 | Nate Lubeck |
支払い方法 | free |
対応言語 | 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" } } } |