Dom Size Analyzer

Google Chrome DevTools Extension for analyzing DOM size

Cos'è Dom Size Analyzer?

Dom Size Analyzer è un'estensione di Chrome sviluppata da Anand R, e la sua funzione principale è "Google Chrome DevTools Extension for analyzing DOM size".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Dom Size Analyzer

Scarica i file di estensione Dom Size Analyzer 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

                        According to (https://developers.google.com/web/tools/lighthouse/audits/dom-size), an optimal DOM tree has the following properties:
-Has less than 1500 nodes total.
-Has a maximum depth of 32 nodes.
-Has no parent node with more than 60 child nodes.

We can use this devtool to analyze a page's DOM to easily find out which parts of the page are adding weight to it.

****NEW*****
Scrolling the DOM element into view and highlighting it when hovered in this devtool.                    

Informazioni di Base sull'Estensione

Nome Dom Size Analyzer Dom Size Analyzer
ID mcneiimlodlbmohipgdbbglgbmaoojen
URL Ufficiale https://chromewebstore.google.com/detail/dom-size-analyzer/mcneiimlodlbmohipgdbbglgbmaoojen
Descrizione Google Chrome DevTools Extension for analyzing DOM size
Dimensione del File 58.04 KB
Conteggio Installazioni 3,631
Versione Corrente 1.25
Ultimo Aggiornamento 2019-09-04
Data di Pubblicazione 2019-08-31
Valutazione 3.55/5 Totale 11 Valutazioni
Sviluppatore Anand R
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dom Size Analyzer",
    "description": "Google Chrome DevTools Extension for analyzing DOM size",
    "version": "1.25",
    "permissions": [
        "*:\/\/*\/*"
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "injectable.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    }
}