HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
What is HTML Layout X-Ray?
HTML Layout X-Ray is a Chrome extension developed by Arjun, and its main feature is "Displays the html page layout, frames, border, sections, tables etc.".
Extension Screenshots
Download HTML Layout X-Ray Extension CRX File
Download HTML Layout X-Ray extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Easily check how HTML Layout is rendered and debug the space border issues.
Extension Basic Information
Name | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
Official URL | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Description | Displays the html page layout, frames, border, sections, tables etc. |
File Size | 20.78 KB |
Installation Count | 35 |
Current Version | 1.0 |
Last Updated | 2022-07-02 |
Publish Date | 2022-07-01 |
Developer | Arjun |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |