CSS Dig

Collect and analyze CSS.

什么是CSS Dig?

CSS Dig是由https://cssdig.com开发的Chrome扩展程序,该扩展的主要功能是“Collect and analyze CSS.”。

扩展截图

screenshot
screenshot
screenshot

下载CSS Dig扩展crx文件

下载CSS Dig扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}