HTML Layout X-Ray

Displays the html page layout, frames, border, sections, tables etc.

什麼是HTML Layout X-Ray?

HTML Layout X-Ray是由Arjun開發的Chrome擴展程式,該擴展的主要功能是“Displays the html page layout, frames, border, sections, tables etc.”。

擴展截圖

screenshot

下載HTML Layout X-Ray擴展crx文件

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

擴展使用說明

                        Easily check how HTML Layout is rendered and debug the space border issues.                    

擴展基本資訊

名稱 HTML Layout X-Ray HTML Layout X-Ray
ID galjejegpfplkacednnfipedcdfdpiak
官方網址 https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak
簡介 Displays the html page layout, frames, border, sections, tables etc.
檔案大小 20.78 KB
安裝次數 35
目前版本 1.0
更新時間 2022-07-02
上架時間 2022-07-01
開發者 Arjun
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HTML Layout X-Ray",
    "description": "Displays the html page layout, frames, border, sections, tables etc.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}