Css Playground and Dom Tree

For Web designers, developers, web instructors. On live web pages, inspect, edit, and test hundreds of [new] CSS styles per second.

Что такое Css Playground and Dom Tree?

Css Playground and Dom Tree - это расширение Chrome, разработанное Jody Brabec, и его основная функция - "For Web designers, developers, web instructors. On live web pages, inspect, edit, and test hundreds of [new] CSS styles per second.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Css Playground and Dom Tree

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

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

                        Extends DevTools!  Works on ANY live web page - explore new css styles like you never have before.                    

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

Название Css Playground and Dom Tree Css Playground and Dom Tree
ID fbdbnlmganadmogpnpceofkilanfolni
Официальный URL https://chromewebstore.google.com/detail/css-playground-and-dom-tr/fbdbnlmganadmogpnpceofkilanfolni
Описание For Web designers, developers, web instructors. On live web pages, inspect, edit, and test hundreds of [new] CSS styles per second.
Размер файла 179 KB
Количество установок 1,339
Текущая Версия 6.1.3
Последнее Обновление 2022-01-13
Дата публикации 2020-04-21
Рейтинг 4.00/5 Всего 2 оценок
Разработчик Jody Brabec
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://youtu.be/t9S5KaNr6Go
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Css Playground and Dom Tree",
    "version": "6.1.3",
    "description": "For Web designers, developers, web instructors. On live web pages, inspect, edit, and test hundreds of [new] CSS styles per second.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        ""
    ],
    "browser_action": {
        "default_icon": "icons\/pine-tree-32.png",
        "default_title": "Css Playground",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "48": "icons\/pine-tree-32.png"
    },
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "icons\/*.png",
        "images\/*.gif",
        "images\/*.jpg",
        "images\/*.png"
    ]
}