DOM Square

Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations and inject code into selected DOM element.

Что такое DOM Square?

DOM Square - это расширение Chrome, разработанное Nitesh Vaidya, и его основная функция - "Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations and inject code into selected DOM element.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations with previewer  and inject code into selected DOM element, and also useful in below operations.
1. Formatter
2. Linters
3. Drag and drop
4. WCAG Validations
5. Emmet Abbrevation’s
6. Emmet Previewer
7. Search
8. API Json viewer
9. HTML viewer
10. CSS file viewer
11. JS file viewer
12. SVG file viewer
13. XML viewer
14. DOM inject
15. DOM Viewer                    

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

Название DOM Square DOM Square
ID dkmdcmmgpmhibkaigpaoaimffalciifg
Официальный URL https://chromewebstore.google.com/detail/dom-square/dkmdcmmgpmhibkaigpaoaimffalciifg
Описание Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations and inject code into selected DOM element.
Размер файла 1.3 MB
Количество установок 61
Текущая Версия 1.0.1
Последнее Обновление 2021-10-17
Дата публикации 2021-06-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Nitesh Vaidya
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM Square",
    "description": "Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations and inject code into selected DOM element.",
    "version": "1.0.1",
    "manifest_version": 2,
    "devtools_page": "devtools.html",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "jquery.min.js",
                "\/inject\/plugin\/beautify\/beautify.min.js",
                "\/inject\/plugin\/beautify\/beautify-css.min.js",
                "\/inject\/plugin\/beautify\/beautify-html.min.js"
            ]
        }
    ]
}