CSS Debugger

A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.

ما هو CSS Debugger؟

CSS Debugger هو إضافة Chrome تم تطويرها بواسطة Mathias Meldgaard Pedersen، والميزة الرئيسية لها هي "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".

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

screenshot

تحميل ملف CRX للإضافة CSS Debugger

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

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

                        A simple extension that injects debug styles into any page helping you debug style and structure issues.                    

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

الاسم CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
عنوان URL الرسمي https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
الوصف A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
حجم الملف 7.27 KB
عدد التثبيتات 1,104
النسخة الحالية 0.1
آخر تحديث 2020-04-07
تاريخ النشر 2020-04-02
تقييم 5.00/5 مجموع تقييمات 1
المطور Mathias Meldgaard Pedersen
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية http://www.mathiaspedersen.dk
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Debugger",
    "version": "0.1",
    "description": "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.",
    "permissions": [
        "tabs"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "CSS Debugger",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}