CSS Dig

Collect and analyze CSS.

CSS Dig क्या है?

CSS Dig https://cssdig.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Collect and analyze CSS."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CSS Dig एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम CSS Dig CSS Dig
ID lpnhmlhomomelfkcjnkcacofhmggjmco
आधिकारिक URL https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco
विवरण Collect and analyze CSS.
फ़ाइल का आकार 175 KB
स्थापना संख्या 12,631
वर्तमान संस्करण 1.2.7
अंतिम अपडेट 2019-05-08
प्रकाशन तिथि 2019-05-07
रेटिंग 2.86/5 कुल 51 रेटिंग्स
डेवलपर https://cssdig.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://cssdig.com
समर्थित भाषाएँ 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"
    ]
}