DOM-Analyzer

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

DOM-Analyzer란 무엇입니까?

DOM-Analyzer은(는) cnavast에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes."입니다.

확장 프로그램 스크린샷

screenshot

DOM-Analyzer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 DOM-Analyzer DOM-Analyzer
ID hjaomadfoogedimonbneolajleaneifj
공식 URL https://chromewebstore.google.com/detail/dom-analyzer/hjaomadfoogedimonbneolajleaneifj
설명 Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.
파일 크기 19.52 KB
설치 횟수 2,070
현재 버전 1.2.1
최근 업데이트 2019-05-29
출시 날짜 2019-05-29
평점 5.00/5 총 2 개의 평점
개발자 cnavast
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cnavast/DOM-Analyzer/
지원되는 언어 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
}