DiagnostiCSS

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

Vad är DiagnostiCSS?

DiagnostiCSS är en Chrome-tillägg utvecklad av https://diagnosticss.github.io, och dess huvudfunktion är "Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.".

Tilläggsskärmbilder

screenshot

Ladda ner DiagnostiCSS-förlängningens CRX-fil

Ladda ner DiagnostiCSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        DiagnostiCSS highlights the following problems:

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

Grundläggande Information om Tillägg

Namn DiagnostiCSS DiagnostiCSS
ID ekpmkpffmmchjaopplcmdadmdhibpmdi
Officiell webbadress https://chromewebstore.google.com/detail/diagnosticss/ekpmkpffmmchjaopplcmdadmdhibpmdi
Beskrivning Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.
Filstorlek 22.22 KB
Antal Installationer 299
Aktuell Version 0.0.3
Senast Uppdaterad 2013-10-05
Publiceringsdatum 2013-10-05
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare https://diagnosticss.github.io
Betalningssätt free
Tilläggswebbplats http://diagnosticss.github.io
Stödda Språk 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
}