Ui Video Tools

Adds an expand button to the unifi video interface

Что такое Ui Video Tools?

Ui Video Tools - это расширение Chrome, разработанное littlej247, и его основная функция - "Adds an expand button to the unifi video interface".

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

screenshot
screenshot

Скачать файл CRX расширения Ui Video Tools

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

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

                        No affiliation with Ubiquity in any way. Adds an expand button to the unifi video "live view" page that makes the video feed take up the whole tab, then provides an exit button in the top right.  The code is posted on github if anyone wants                    

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

Название Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
Официальный URL https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
Описание Adds an expand button to the unifi video interface
Размер файла 6.16 KB
Количество установок 399
Текущая Версия 0.1
Последнее Обновление 2020-11-15
Дата публикации 2020-11-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик littlej247
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/littlej247/Unifi-Video-Tools
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ui Video Tools",
    "version": "0.1",
    "description": "Adds an expand button to the unifi video interface",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/video.ui.com\/*",
                "https:\/\/*:7443\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "homepage_url": "https:\/\/github.com\/littlej247\/Unifi-Video-Tools"
}