DiagnostiCSS

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

Was ist DiagnostiCSS?

DiagnostiCSS ist eine Chrome-Erweiterung, die von https://diagnosticss.github.io entwickelt wurde, und ihr Hauptmerkmal ist "Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.".

Erweiterungsscreenshots

screenshot

DiagnostiCSS-Erweiterungs-CRX-Datei herunterladen

Laden Sie DiagnostiCSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        DiagnostiCSS highlights the following problems:

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

Grundlegende Informationen zur Erweiterung

Name DiagnostiCSS DiagnostiCSS
ID ekpmkpffmmchjaopplcmdadmdhibpmdi
Offizielle URL https://chromewebstore.google.com/detail/diagnosticss/ekpmkpffmmchjaopplcmdadmdhibpmdi
Beschreibung Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.
Dateigröße 22.22 KB
Installationsanzahl 299
Aktuelle Version 0.0.3
Letztes Update 2013-10-05
Veröffentlichungsdatum 2013-10-05
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler https://diagnosticss.github.io
Zahlungsart free
Erweiterungswebsite http://diagnosticss.github.io
Unterstützte Sprachen 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
}