Design Column Overlay

This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…

Что такое Design Column Overlay?

Design Column Overlay - это расширение Chrome, разработанное pnarielwala, и его основная функция - "This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Design Column Overlay

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

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

                        This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design guidelines at various window dimensions                    

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

Название Design Column Overlay Design Column Overlay
ID ljefcffcapmdjpfkdbdaflllfjognlnh
Официальный URL https://chromewebstore.google.com/detail/design-column-overlay/ljefcffcapmdjpfkdbdaflllfjognlnh
Описание This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…
Размер файла 392 KB
Количество установок 503
Текущая Версия 0.2
Последнее Обновление 2022-09-27
Дата публикации 2020-04-22
Рейтинг 5.00/5 Всего 2 оценок
Разработчик pnarielwala
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/pnarielwala/design-column-overlay
URL страницы помощи https://github.com/pnarielwala/design-column-overlay
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Design Column Overlay",
    "version": "0.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "column16.png",
        "48": "column48.png",
        "128": "column128.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}