Domkit

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

Was ist Domkit?

Domkit ist eine Chrome-Erweiterung, die von nickolasburr entwickelt wurde, und ihr Hauptmerkmal ist "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Domkit-Erweiterungs-CRX-Datei herunterladen

Laden Sie Domkit-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Domkit Domkit
ID cdeocdbeomkaegbihhleiikgkkmacgek
Offizielle URL https://chromewebstore.google.com/detail/domkit/cdeocdbeomkaegbihhleiikgkkmacgek
Beschreibung Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.
Dateigröße 121 KB
Installationsanzahl 920
Aktuelle Version 2.1.6
Letztes Update 2017-07-22
Veröffentlichungsdatum 2017-07-22
Bewertung 4.33/5 Insgesamt 3 Bewertungen
Entwickler nickolasburr
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}