DiagnostiCSS

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

Co to jest DiagnostiCSS?

DiagnostiCSS to rozszerzenie Chrome opracowane przez https://diagnosticss.github.io, a jego główną funkcją jest „Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia DiagnostiCSS

Pobierz pliki rozszerzeń DiagnostiCSS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        DiagnostiCSS highlights the following problems:

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

Podstawowe informacje o rozszerzeniu

Nazwa DiagnostiCSS DiagnostiCSS
ID ekpmkpffmmchjaopplcmdadmdhibpmdi
Oficjalny URL https://chromewebstore.google.com/detail/diagnosticss/ekpmkpffmmchjaopplcmdadmdhibpmdi
Opis Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.
Rozmiar pliku 22.22 KB
Liczba instalacji 299
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2013-10-05
Data Publikacji 2013-10-05
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper https://diagnosticss.github.io
Typ Płatności free
Strona Rozszerzenia http://diagnosticss.github.io
Obsługiwane Języki 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
}