CSS Dig

Collect and analyze CSS.

Что такое CSS Dig?

CSS Dig - это расширение Chrome, разработанное https://cssdig.com, и его основная функция - "Collect and analyze CSS.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения CSS Dig

Скачайте файлы расширений 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"
    ]
}