CSS Debugger

A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.

Co to jest CSS Debugger?

CSS Debugger to rozszerzenie Chrome opracowane przez Mathias Meldgaard Pedersen, a jego główną funkcją jest „A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia CSS Debugger

Pobierz pliki rozszerzeń CSS 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

                        A simple extension that injects debug styles into any page helping you debug style and structure issues.                    

Podstawowe informacje o rozszerzeniu

Nazwa CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
Oficjalny URL https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
Opis A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Rozmiar pliku 7.27 KB
Liczba instalacji 1,104
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-04-07
Data Publikacji 2020-04-02
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Mathias Meldgaard Pedersen
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności http://www.mathiaspedersen.dk
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Debugger",
    "version": "0.1",
    "description": "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.",
    "permissions": [
        "tabs"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "CSS Debugger",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}