HTML Layout X-Ray

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

HTML Layout X-Ray là gì?

HTML Layout X-Ray là một tiện ích mở rộng Chrome được phát triển bởi Arjun, và tính năng chính của nó là "Displays the html page layout, frames, border, sections, tables etc.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng HTML Layout X-Ray

Tải xuống các tệp mở rộng HTML Layout X-Ray dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HTML Layout X-Ray HTML Layout X-Ray
ID galjejegpfplkacednnfipedcdfdpiak
URL Chính Thức https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak
Mô tả Displays the html page layout, frames, border, sections, tables etc.
Kích Thước Tệp 20.78 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-07-02
Ngày Phát Hành 2022-07-01
Nhà Phát Triển Arjun
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}