CSS Debugger

A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.

什麼是CSS Debugger?

CSS Debugger是由Mathias Meldgaard Pedersen開發的Chrome擴展程式,該擴展的主要功能是“A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.”。

擴展截圖

screenshot

下載CSS Debugger擴展crx文件

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

擴展使用說明

                        A simple extension that injects debug styles into any page helping you debug style and structure issues.                    

擴展基本資訊

名稱 CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
官方網址 https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
簡介 A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
檔案大小 7.27 KB
安裝次數 1,104
目前版本 0.1
更新時間 2020-04-07
上架時間 2020-04-02
評分 5.00/5 共 1 次評分
開發者 Mathias Meldgaard Pedersen
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://www.mathiaspedersen.dk
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Debugger",
    "version": "0.1",
    "description": "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.",
    "permissions": [
        "tabs"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "CSS Debugger",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}