CSS Debugger
A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Wat is CSS Debugger?
CSS Debugger is een Chrome-extensie ontwikkeld door Mathias Meldgaard Pedersen, en de belangrijkste functie is "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".
Extensie Screenshots
Download het CRX-bestand van de extensie CSS Debugger
Download CSS Debugger-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A simple extension that injects debug styles into any page helping you debug style and structure issues.
Basisinformatie over de Extensie
Naam | CSS Debugger |
ID | jmlihgplnddolhopaoengncklepinhgc |
Officiële URL | https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc |
Beschrijving | A lightweight extension for Google chrome that shows the outline of all CSS elements on the page. |
Bestandsgrootte | 7.27 KB |
Aantal Installaties | 1,104 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2020-04-07 |
Publicatiedatum | 2020-04-02 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Mathias Meldgaard Pedersen |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | http://www.mathiaspedersen.dk |
Ondersteunde Talen | 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" } } |