HTML Validator
Validating web page
什么是HTML Validator?
HTML Validator是由hozefa开发的Chrome扩展程序,该扩展的主要功能是“Validating web page”。
扩展截图
下载HTML Validator扩展crx文件
下载HTML Validator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension helps to validate a web-page using a validator created by Philip Walton.
This will be a useful tool when it comes to checking pages create follow HTML standards. This is especially useful for accessibility(ARIA attributes) and cleaning up un-used markup.
Usage : Open the developer tools, goto Console. Click on the extension on the browser. All the errors/warning will be shown on the console.
Reference:
Blog Link : http://philipwalton.com/articles/introducing-html-inspectorlity
Validator Source Code : https://cdnjs.cloudflare.com/ajax/libs/html-inspector/0.8.1/html-inspector.js 扩展基本信息
| 名称 | |
| ID | jpjlkcamghnaeabinbcolngkgkpdfgod |
| 官方URL | https://chrome.google.com/webstore/detail/html-validator/jpjlkcamghnaeabinbcolngkgkpdfgod |
| 简介 | Validating web page |
| 文件大小 | 31.73 KB |
| 安装次数 | 150 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2015-01-29 |
| 上架时间 | 2015-01-29 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | hozefa |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "HTML Validator",
"short_name": "HTMLValidator",
"version": "0.2.0",
"description": "Validating web page",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png"
},
"background": {
"scripts": [
"event.js"
],
"persistent": false
},
"permissions": [
"tabs",
"activeTab"
]
} | |