DiagnostiCSS

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

ما هو DiagnostiCSS؟

DiagnostiCSS هو إضافة Chrome تم تطويرها بواسطة https://diagnosticss.github.io، والميزة الرئيسية لها هي "Diagnostic CSS stylesheet that helps visually detect any potentially invalid, inaccessible or erroneous HTML markup.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة DiagnostiCSS

قم بتنزيل ملفات الامتداد DiagnostiCSS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        DiagnostiCSS highlights the following problems:

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

معلومات أساسية عن التمديد

الاسم DiagnostiCSS 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
}