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 |
官方網址 | 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" } } } |