CSS Dig

Collect and analyze CSS.

Cos'è CSS Dig?

CSS Dig è un'estensione di Chrome sviluppata da https://cssdig.com, e la sua funzione principale è "Collect and analyze CSS.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione CSS Dig

Scarica i file di estensione CSS Dig 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

                        CSS Dig finds and groups stylesheets and style blocks on most websites, providing an easy way to analyze the code and plan refactors.

Properties: Take a look at all your CSS properties, their frequency and variations. Have too many shades of blue? Inconsistencies often means confusion for your developers and irregularities for your end users.

Selectors & Specificity: Are your selectors long? Using lots of IDs? Specificity wars are frustrating and piling on new CSS will only make the situation worse. Find potential problem areas and make a plan to fix.                    

Informazioni di Base sull'Estensione

Nome CSS Dig CSS Dig
ID lpnhmlhomomelfkcjnkcacofhmggjmco
URL Ufficiale https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco
Descrizione Collect and analyze CSS.
Dimensione del File 175 KB
Conteggio Installazioni 12,631
Versione Corrente 1.2.7
Ultimo Aggiornamento 2019-05-08
Data di Pubblicazione 2019-05-07
Valutazione 2.86/5 Totale 51 Valutazioni
Sviluppatore https://cssdig.com
Tipo di Pagamento free
Sito Web dell'Estensione http://cssdig.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Dig",
    "description": "Collect and analyze CSS.",
    "version": "1.2.7",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "i\/icon16.png",
        "48": "i\/icon48.png",
        "128": "i\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "i\/icon19.png",
            "38": "i\/icon38.png"
        },
        "default_title": "CSS Dig"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "html\/dig.html",
        "i\/icon48.png",
        "css\/cssdig.css",
        "js\/cssdig.js"
    ]
}