HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
Vad är HTML Layout X-Ray?
HTML Layout X-Ray är en Chrome-tillägg utvecklad av Arjun, och dess huvudfunktion är "Displays the html page layout, frames, border, sections, tables etc.".
Tilläggsskärmbilder
Ladda ner HTML Layout X-Ray-förlängningens CRX-fil
Ladda ner HTML Layout X-Ray-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Easily check how HTML Layout is rendered and debug the space border issues.
Grundläggande Information om Tillägg
Namn | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
Officiell webbadress | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Beskrivning | Displays the html page layout, frames, border, sections, tables etc. |
Filstorlek | 20.78 KB |
Antal Installationer | 35 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-07-02 |
Publiceringsdatum | 2022-07-01 |
Utvecklare | Arjun |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |