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