Ui Video Tools

Adds an expand button to the unifi video interface

Qu'est-ce que Ui Video Tools ?

Ui Video Tools est une extension Chrome développée par littlej247, et sa fonction principale est "Adds an expand button to the unifi video interface".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Ui Video Tools

Téléchargez les fichiers d'extension Ui Video Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
URL Officiel https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
Description Adds an expand button to the unifi video interface
Taille du Fichier 6.16 KB
Nombre d'Installations 399
Version Actuelle 0.1
Dernière Mise à Jour 2020-11-15
Date de Publication 2020-11-15
Évaluation 5.00/5 Total 1 Évaluations
Développeur littlej247
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/littlej247/Unifi-Video-Tools
Langues Prises en Charge 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"
}