Laser Eyes

Outline every element on your website with the help of Laser Eyes

Что такое Laser Eyes?

Laser Eyes - это расширение Chrome, разработанное https://layerworks.com, и его основная функция - "Outline every element on your website with the help of Laser Eyes".

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

screenshot

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

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

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

                        An extension that aids Front-end Developers by visualizing elements in the DOM. Activating Laser Eyes will inject custom CSS onto the current tab, allowing developers to see how elements align and stack up. By using the CSS "outline" property, as opposed to "border", the elements won't grow in size and the original alignment is preserved. The CSS that Laser Eyes injects is customizable and synced across multiple browsers.                    

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

Название Laser Eyes Laser Eyes
ID kfpknakmpilhdaoiecgelegmbadacmod
Официальный URL https://chromewebstore.google.com/detail/laser-eyes/kfpknakmpilhdaoiecgelegmbadacmod
Описание Outline every element on your website with the help of Laser Eyes
Размер файла 28.72 KB
Количество установок 295
Текущая Версия 1.0
Последнее Обновление 2022-02-24
Дата публикации 2022-02-24
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://layerworks.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/dthunziker/laser-eyes
URL страницы помощи https://github.com/dthunziker/laser-eyes
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Laser Eyes",
    "description": "Outline every element on your website with the help of Laser Eyes",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "img\/16.png",
            "32": "img\/32.png",
            "48": "img\/48.png",
            "128": "img\/128.png"
        }
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ]
}