CSS Debugger

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

Vad är CSS Debugger?

CSS Debugger är en Chrome-tillägg utvecklad av Mathias Meldgaard Pedersen, och dess huvudfunktion är "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".

Tilläggsskärmbilder

screenshot

Ladda ner CSS Debugger-förlängningens CRX-fil

Ladda ner CSS Debugger-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

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

Grundläggande Information om Tillägg

Namn CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
Officiell webbadress https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
Beskrivning A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Filstorlek 7.27 KB
Antal Installationer 1,104
Aktuell Version 0.1
Senast Uppdaterad 2020-04-07
Publiceringsdatum 2020-04-02
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Mathias Meldgaard Pedersen
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan http://www.mathiaspedersen.dk
Stödda Språk 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"
    }
}