Scan CSS

A script to inspect, scan and copy CSS properties of any element on the web page

Что такое Scan CSS?

Scan CSS - это расширение Chrome, разработанное akshaymalik191, и его основная функция - "A script to inspect, scan and copy CSS properties of any element on the web page".

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

screenshot

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

Скачайте файлы расширений Scan CSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A free tool to inspect and edit CSS right in the browser without a need to open developer tools.

Press 'alt + s' to start the inspection.

Click on "Copy" to copy the CSS properties of the element.

Click on "Copy All" to copy the CSS properties of the element as well of its children.                    

Основная информация о расширении

Название Scan CSS Scan CSS
ID mkdaolldfcljbalhclcakgjjiklajdof
Официальный URL https://chromewebstore.google.com/detail/scan-css/mkdaolldfcljbalhclcakgjjiklajdof
Описание A script to inspect, scan and copy CSS properties of any element on the web page
Размер файла 115 KB
Количество установок 293
Текущая Версия 1.0.2
Последнее Обновление 2022-11-29
Дата публикации 2022-11-26
Рейтинг 2.50/5 Всего 4 оценок
Разработчик akshaymalik191
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scan CSS",
    "description": "A script to inspect, scan and copy CSS properties of any element on the web page",
    "version": "1.0.2",
    "icons": {
        "512": "icons\/Icon-512.png",
        "256": "icons\/Icon-256.png",
        "196": "icons\/Icon-196.png",
        "128": "icons\/Icon-128.png",
        "64": "icons\/Icon-64.png",
        "32": "icons\/Icon-32.png",
        "16": "icons\/Icon-16.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}