CSS Dig

Collect and analyze CSS.

Wat is CSS Dig?

CSS Dig is een Chrome-extensie ontwikkeld door https://cssdig.com, en de belangrijkste functie is "Collect and analyze CSS.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie CSS Dig

Download CSS Dig-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

                        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.                    

Basisinformatie over de Extensie

Naam CSS Dig CSS Dig
ID lpnhmlhomomelfkcjnkcacofhmggjmco
Officiële URL https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco
Beschrijving Collect and analyze CSS.
Bestandsgrootte 175 KB
Aantal Installaties 12,631
Huidige Versie 1.2.7
Laatst Bijgewerkt 2019-05-08
Publicatiedatum 2019-05-07
Beoordeling 2.86/5 Totaal 51 Beoordelingen
Ontwikkelaar https://cssdig.com
Betalingswijze free
Extensiewebsite http://cssdig.com
Ondersteunde Talen 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"
    ]
}