Outline Chrome Extension

Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).

Что такое Outline Chrome Extension?

Outline Chrome Extension - это расширение Chrome, разработанное Alejandro Zepeda, и его основная функция - "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

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

screenshot

Скачать файл CRX расширения Outline Chrome Extension

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

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

                        This extension will help you to add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning), it's great for web design, or just to verify that your HTML + CSS code is working as expected.                    

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

Название Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
Официальный URL https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Описание Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Размер файла 12.84 KB
Количество установок 3,151
Текущая Версия 0.1.0
Последнее Обновление 2022-06-16
Дата публикации 2019-04-26
Рейтинг 5.00/5 Всего 7 оценок
Разработчик Alejandro Zepeda
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/alejandrozepeda/outline-chrome-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline Chrome Extension",
    "version": "0.1.0",
    "author": "Alejandro Zepeda",
    "description": "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/alejandrozepeda\/outline-chrome-extension",
    "icons": {
        "128": "icons\/outline.png"
    },
    "browser_action": {
        "default_icon": "icons\/outline-black.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage",
        "activeTab"
    ]
}