HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
Co to jest HTML Layout X-Ray?
HTML Layout X-Ray to rozszerzenie Chrome opracowane przez Arjun, a jego główną funkcją jest „Displays the html page layout, frames, border, sections, tables etc.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HTML Layout X-Ray
Pobierz pliki rozszerzeń HTML Layout X-Ray w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Easily check how HTML Layout is rendered and debug the space border issues.
Podstawowe informacje o rozszerzeniu
Nazwa | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
Oficjalny URL | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
Opis | Displays the html page layout, frames, border, sections, tables etc. |
Rozmiar pliku | 20.78 KB |
Liczba instalacji | 35 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-07-02 |
Data Publikacji | 2022-07-01 |
Deweloper | Arjun |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |