CSS Debugger
A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Cos'è CSS Debugger?
CSS Debugger è un'estensione di Chrome sviluppata da Mathias Meldgaard Pedersen, e la sua funzione principale è "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CSS Debugger
Scarica i file di estensione CSS Debugger in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A simple extension that injects debug styles into any page helping you debug style and structure issues. Informazioni di Base sull'Estensione
| Nome | |
| ID | jmlihgplnddolhopaoengncklepinhgc |
| URL Ufficiale | https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc |
| Descrizione | A lightweight extension for Google chrome that shows the outline of all CSS elements on the page. |
| Dimensione del File | 7.27 KB |
| Conteggio Installazioni | 1,104 |
| Versione Corrente | 0.1 |
| Ultimo Aggiornamento | 2020-04-07 |
| Data di Pubblicazione | 2020-04-02 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Mathias Meldgaard Pedersen |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | http://www.mathiaspedersen.dk |
| Lingue Supportate | 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"
}
} | |