Layout Debugger
Chrome extension for highlighting DOM elements to better debug layout issues
Co to jest Layout Debugger?
Layout Debugger to rozszerzenie Chrome opracowane przez cdsnowden, a jego główną funkcją jest „Chrome extension for highlighting DOM elements to better debug layout issues”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Layout Debugger
Pobierz pliki rozszerzeń Layout Debugger 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
- Identifying too-wide overflowing objects. - Distinguishing block from inline elements. - Helping to keep track of element alignment. Adds a distinct colour outline to each visible DOM element, as well as providing a visual prompt for overflowing divs. display: block; => blue; display: inline; => purple; overflowing the viewport => red! etc..
Podstawowe informacje o rozszerzeniu
Nazwa | Layout Debugger |
ID | gkamnoiedmidgolhlihkamjpfccohilb |
Oficjalny URL | https://chromewebstore.google.com/detail/layout-debugger/gkamnoiedmidgolhlihkamjpfccohilb |
Opis | Chrome extension for highlighting DOM elements to better debug layout issues |
Rozmiar pliku | 251 KB |
Liczba instalacji | 897 |
Aktualna Wersja | 1.7 |
Ostatnia Aktualizacja | 2022-04-19 |
Data Publikacji | 2017-07-31 |
Ocena | 4.00/5 Łącznie 3 Oceny |
Deweloper | cdsnowden |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Recidvst/Layout-Debugger |
Adres URL Strony Pomocy | https://github.com/Recidvst/Layout-Debugger#support |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Layout Debugger", "short_name": "Layout Debugger", "description": "Chrome extension for highlighting DOM elements to better debug layout issues", "version": "1.7", "author": "Chris Snowden", "icons": { "19": "images\/icon19dark.png", "38": "images\/icon38dark.png", "128": "images\/icon128dark.png" }, "browser_action": { "default_icon": { "19": "images\/icon19dark.png", "38": "images\/icon38dark.png" }, "default_title": "Toggle highlighter" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ " |