HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
Wat is HTML Layout X-Ray?
HTML Layout X-Ray is een Chrome-extensie ontwikkeld door Arjun, en de belangrijkste functie is "Displays the html page layout, frames, border, sections, tables etc.".
Extensie Screenshots
Download het CRX-bestand van de extensie HTML Layout X-Ray
Download HTML Layout X-Ray-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Easily check how HTML Layout is rendered and debug the space border issues.
Basisinformatie over de Extensie
Naam | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
Officiële URL | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Beschrijving | Displays the html page layout, frames, border, sections, tables etc. |
Bestandsgrootte | 20.78 KB |
Aantal Installaties | 35 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2022-07-02 |
Publicatiedatum | 2022-07-01 |
Ontwikkelaar | Arjun |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |