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