Domkit

Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.

ما هو Domkit؟

Domkit هو إضافة Chrome تم تطويرها بواسطة nickolasburr، والميزة الرئيسية لها هي "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Domkit is a Chrome extension for analyzing the CSS box model of HTML elements. If you need to know the computed width or height of an element, toggle on Domkit and it will provide a large box shadow around the element, essentially raising it above the other elements and giving you the dimensions. Additionally, Domkit also provides information on what type of element you're viewing so that you can easily know whether you're viewing the element you want or not. Enjoy Domkit and please submit any feedback!                    

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

الاسم Domkit Domkit
ID cdeocdbeomkaegbihhleiikgkkmacgek
عنوان URL الرسمي https://chromewebstore.google.com/detail/domkit/cdeocdbeomkaegbihhleiikgkkmacgek
الوصف Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.
حجم الملف 121 KB
عدد التثبيتات 920
النسخة الحالية 2.1.6
آخر تحديث 2017-07-22
تاريخ النشر 2017-07-22
تقييم 4.33/5 مجموع تقييمات 3
المطور nickolasburr
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Domkit",
    "short_name": "DMKT",
    "version": "2.1.6",
    "description": "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/orange-box-48x48.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "icons\/orange-box-16x16.png",
        "48": "icons\/orange-box-48x48.png",
        "128": "icons\/orange-box-128x128.png"
    },
    "permissions": [
        "storage"
    ]
}