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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |