DiagnostiCSS
Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.
什么是DiagnostiCSS?
DiagnostiCSS是由https://diagnosticss.github.io开发的Chrome扩展程序,该扩展的主要功能是“Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.”。
扩展截图
下载DiagnostiCSS扩展crx文件
下载DiagnostiCSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
DiagnostiCSS highlights the following problems: * inline styles and event attributes * invalid links * empty or deprecated elements * elements missing required attributes
扩展基本信息
名称 | DiagnostiCSS |
ID | ekpmkpffmmchjaopplcmdadmdhibpmdi |
官方URL | https://chromewebstore.google.com/detail/diagnosticss/ekpmkpffmmchjaopplcmdadmdhibpmdi |
简介 | Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup. |
文件大小 | 22.22 KB |
安装次数 | 299 |
当前版本 | 0.0.3 |
更新时间 | 2013-10-05 |
上架时间 | 2013-10-05 |
评分 | 4.00/5 共4次评分 |
开发者 | https://diagnosticss.github.io |
付费类型 | free |
扩展官网 | http://diagnosticss.github.io |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DiagnostiCSS", "description": "Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.", "version": "0.0.3", "background": { "scripts": [ "bg.js" ], "persistent": false }, "browser_action": { "default_icon": "disabled_icon19.png", "default_title": "DiagnostiCSS" }, "permissions": [ "activeTab", "http:\/\/diagnosticss.github.io\/css\/diagnosticss.css" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/\/*" ], "all_frames": true, "js": [ "content.js" ] } ], "icons": { "128": "128.png" }, "manifest_version": 2 } |