Layout Debugger

Chrome extension for highlighting DOM elements to better debug layout issues

什么是Layout Debugger?

Layout Debugger是由cdsnowden开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension for highlighting DOM elements to better debug layout issues”。

扩展截图

screenshot
screenshot

下载Layout Debugger扩展crx文件

下载Layout Debugger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - Identifying too-wide overflowing objects.
- Distinguishing block from inline elements.
- Helping to keep track of element alignment.

Adds a distinct colour outline to each visible DOM element, as well as providing a visual prompt for overflowing divs.

display: block; => blue;
display: inline; => purple;
overflowing the viewport => red!
etc..                    

扩展基本信息

名称 Layout Debugger Layout Debugger
ID gkamnoiedmidgolhlihkamjpfccohilb
官方URL https://chromewebstore.google.com/detail/layout-debugger/gkamnoiedmidgolhlihkamjpfccohilb
简介 Chrome extension for highlighting DOM elements to better debug layout issues
文件大小 251 KB
安装次数 897
当前版本 1.7
更新时间 2022-04-19
上架时间 2017-07-31
评分 4.00/5 共3次评分
开发者 cdsnowden
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Recidvst/Layout-Debugger
帮助页面URL https://github.com/Recidvst/Layout-Debugger#support
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Layout Debugger",
    "short_name": "Layout Debugger",
    "description": "Chrome extension for highlighting DOM elements to better debug layout issues",
    "version": "1.7",
    "author": "Chris Snowden",
    "icons": {
        "19": "images\/icon19dark.png",
        "38": "images\/icon38dark.png",
        "128": "images\/icon128dark.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19dark.png",
            "38": "images\/icon38dark.png"
        },
        "default_title": "Toggle highlighter"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "highlight.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "*.png",
        "highlight.js"
    ]
}