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文件

下載DOM-Analyzer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}