CSS Debugger

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

Qu'est-ce que CSS Debugger ?

CSS Debugger est une extension Chrome développée par Mathias Meldgaard Pedersen, et sa fonction principale est "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CSS Debugger

Téléchargez les fichiers d'extension CSS Debugger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
URL Officiel https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
Description A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Taille du Fichier 7.27 KB
Nombre d'Installations 1,104
Version Actuelle 0.1
Dernière Mise à Jour 2020-04-07
Date de Publication 2020-04-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur Mathias Meldgaard Pedersen
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité http://www.mathiaspedersen.dk
Langues Prises en Charge 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"
    }
}