DOM-Analyzer

Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.

O que é DOM-Analyzer?

DOM-Analyzer é uma extensão do Chrome desenvolvida por cnavast, e sua principal característica é "Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão DOM-Analyzer

Baixe arquivos de extensão DOM-Analyzer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Learn what elements of your webpage are slowing down your rendering time or which ones are not SEO friendly with DOM-Analyzer!

This tool allows you to explore the DOM, ordering each level by:
- Nodes: number of nodes under each branch,
- Depth: maximum depth under each branch,
- Length: count of characters on that branch (without spaces).

You will find this useful to find nodes that are specially heavy, have too many children or too many levels (which is usually bad when comes to rendering the page). You can go straight to the node's element by clicking on it or see which one it is by hovering over it.                    

Informações Básicas da Extensão

Nome DOM-Analyzer DOM-Analyzer
ID hjaomadfoogedimonbneolajleaneifj
URL Oficial https://chromewebstore.google.com/detail/dom-analyzer/hjaomadfoogedimonbneolajleaneifj
Descrição Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.
Tamanho do Arquivo 19.52 KB
Contagem de Instalações 2,070
Versão Atual 1.2.1
Última Atualização 2019-05-29
Data de Publicação 2019-05-29
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor cnavast
Tipo de Pagamento free
Site da Extensão https://github.com/cnavast/DOM-Analyzer/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM-Analyzer",
    "author": "cnavast",
    "incognito": "split",
    "homepage_url": "http:\/\/github.com\/cnavast\/DOM-Analyzer\/",
    "version": "1.2.1",
    "description": "Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.",
    "browser_action": {
        "default_title": "DOM-Analyzer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "manifest_version": 2
}