Ui Video Tools

Adds an expand button to the unifi video interface

Was ist Ui Video Tools?

Ui Video Tools ist eine Chrome-Erweiterung, die von littlej247 entwickelt wurde, und ihr Hauptmerkmal ist "Adds an expand button to the unifi video interface".

Erweiterungsscreenshots

screenshot
screenshot

Ui Video Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ui Video Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
Offizielle URL https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
Beschreibung Adds an expand button to the unifi video interface
Dateigröße 6.16 KB
Installationsanzahl 399
Aktuelle Version 0.1
Letztes Update 2020-11-15
Veröffentlichungsdatum 2020-11-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler littlej247
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/littlej247/Unifi-Video-Tools
Unterstützte Sprachen 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"
}