Ui Video Tools

Adds an expand button to the unifi video interface

Co to jest Ui Video Tools?

Ui Video Tools to rozszerzenie Chrome opracowane przez littlej247, a jego główną funkcją jest „Adds an expand button to the unifi video interface”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Ui Video Tools

Pobierz pliki rozszerzeń Ui Video Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
Oficjalny URL https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
Opis Adds an expand button to the unifi video interface
Rozmiar pliku 6.16 KB
Liczba instalacji 399
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-11-15
Data Publikacji 2020-11-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper littlej247
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/littlej247/Unifi-Video-Tools
Obsługiwane Języki 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"
}