HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
O que é HTML Layout X-Ray?
HTML Layout X-Ray é uma extensão do Chrome desenvolvida por Arjun, e sua principal característica é "Displays the html page layout, frames, border, sections, tables etc.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão HTML Layout X-Ray
Baixe arquivos de extensão HTML Layout X-Ray no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Easily check how HTML Layout is rendered and debug the space border issues.
Informações Básicas da Extensão
Nome | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
URL Oficial | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Descrição | Displays the html page layout, frames, border, sections, tables etc. |
Tamanho do Arquivo | 20.78 KB |
Contagem de Instalações | 35 |
Versão Atual | 1.0 |
Última Atualização | 2022-07-02 |
Data de Publicação | 2022-07-01 |
Desenvolvedor | Arjun |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |