HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
Cos'è HTML Layout X-Ray?
HTML Layout X-Ray è un'estensione di Chrome sviluppata da Arjun, e la sua funzione principale è "Displays the html page layout, frames, border, sections, tables etc.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HTML Layout X-Ray
Scarica i file di estensione HTML Layout X-Ray in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Easily check how HTML Layout is rendered and debug the space border issues.
Informazioni di Base sull'Estensione
Nome | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
URL Ufficiale | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Descrizione | Displays the html page layout, frames, border, sections, tables etc. |
Dimensione del File | 20.78 KB |
Conteggio Installazioni | 35 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-07-02 |
Data di Pubblicazione | 2022-07-01 |
Sviluppatore | Arjun |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |