HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
HTML Layout X-Rayคืออะไร?
HTML Layout X-Ray เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arjun และคุณลักษณะหลักของมันคือ "Displays the html page layout, frames, border, sections, tables etc."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HTML Layout X-Ray
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |