HTML Layout X-Ray

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

HTML Layout X-Ray क्या है?

HTML Layout X-Ray Arjun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the html page layout, frames, border, sections, tables etc."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HTML Layout X-Ray एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम HTML Layout X-Ray HTML Layout X-Ray
ID galjejegpfplkacednnfipedcdfdpiak
आधिकारिक URL 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"
            ]
        }
    ]
}