Domkit

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

Cos'è Domkit?

Domkit è un'estensione di Chrome sviluppata da nickolasburr, e la sua funzione principale è "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Domkit

Scarica i file di estensione Domkit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Domkit Domkit
ID cdeocdbeomkaegbihhleiikgkkmacgek
URL Ufficiale https://chromewebstore.google.com/detail/domkit/cdeocdbeomkaegbihhleiikgkkmacgek
Descrizione Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.
Dimensione del File 121 KB
Conteggio Installazioni 920
Versione Corrente 2.1.6
Ultimo Aggiornamento 2017-07-22
Data di Pubblicazione 2017-07-22
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore nickolasburr
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}