CSS Dig

Collect and analyze CSS.

CSS Dig là gì?

CSS Dig là một tiện ích mở rộng Chrome được phát triển bởi https://cssdig.com, và tính năng chính của nó là "Collect and analyze CSS.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CSS Dig

Tải xuống các tệp mở rộng CSS Dig dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CSS Dig CSS Dig
ID lpnhmlhomomelfkcjnkcacofhmggjmco
URL Chính Thức https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco
Mô tả Collect and analyze CSS.
Kích Thước Tệp 175 KB
Số Lần Cài Đặt 12,631
Phiên Bản Hiện Tại 1.2.7
Cập Nhật Lần Cuối 2019-05-08
Ngày Phát Hành 2019-05-07
Đánh Giá 2.86/5 Tổng số 51 Đánh Giá
Nhà Phát Triển https://cssdig.com
Loại Thanh Toán free
Trang Web Mở Rộng http://cssdig.com
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}