DiagnostiCSS

Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.

What is DiagnostiCSS?

DiagnostiCSS is a Chrome extension developed by https://diagnosticss.github.io, and its main feature is "Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.".

Extension Screenshots

screenshot

Download DiagnostiCSS Extension CRX File

Download DiagnostiCSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        DiagnostiCSS highlights the following problems:

* inline styles and event attributes
* invalid links
* empty or deprecated elements
* elements missing required attributes                    

Extension Basic Information

Name DiagnostiCSS DiagnostiCSS
ID ekpmkpffmmchjaopplcmdadmdhibpmdi
Official URL https://chromewebstore.google.com/detail/diagnosticss/ekpmkpffmmchjaopplcmdadmdhibpmdi
Description Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.
File Size 22.22 KB
Installation Count 299
Current Version 0.0.3
Last Updated 2013-10-05
Publish Date 2013-10-05
Rating 4.00/5 Total 4 Ratings
Developer https://diagnosticss.github.io
Payment Type free
Extension Website http://diagnosticss.github.io
Supported Languages 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
}