Domkit

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

Qu'est-ce que Domkit ?

Domkit est une extension Chrome développée par nickolasburr, et sa fonction principale est "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Domkit

Téléchargez les fichiers d'extension Domkit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Domkit Domkit
ID cdeocdbeomkaegbihhleiikgkkmacgek
URL Officiel https://chromewebstore.google.com/detail/domkit/cdeocdbeomkaegbihhleiikgkkmacgek
Description Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.
Taille du Fichier 121 KB
Nombre d'Installations 920
Version Actuelle 2.1.6
Dernière Mise à Jour 2017-07-22
Date de Publication 2017-07-22
Évaluation 4.33/5 Total 3 Évaluations
Développeur nickolasburr
Type de Paiement free
Langues Prises en Charge 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"
    ]
}