HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
Apa itu HTML Layout X-Ray?
HTML Layout X-Ray adalah ekstensi Chrome yang dikembangkan oleh Arjun, dan fitur utamanya adalah "Displays the html page layout, frames, border, sections, tables etc.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi HTML Layout X-Ray
Unduh file ekstensi HTML Layout X-Ray dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Easily check how HTML Layout is rendered and debug the space border issues.
Informasi Dasar Ekstensi
Nama | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
URL Resmi | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Deskripsi | Displays the html page layout, frames, border, sections, tables etc. |
Ukuran File | 20.78 KB |
Jumlah Instalasi | 35 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2022-07-02 |
Tanggal Publikasi | 2022-07-01 |
Pengembang | Arjun |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |