Ui Video Tools

Adds an expand button to the unifi video interface

Cos'è Ui Video Tools?

Ui Video Tools è un'estensione di Chrome sviluppata da littlej247, e la sua funzione principale è "Adds an expand button to the unifi video interface".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Ui Video Tools

Scarica i file di estensione Ui Video Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
URL Ufficiale https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
Descrizione Adds an expand button to the unifi video interface
Dimensione del File 6.16 KB
Conteggio Installazioni 399
Versione Corrente 0.1
Ultimo Aggiornamento 2020-11-15
Data di Pubblicazione 2020-11-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore littlej247
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/littlej247/Unifi-Video-Tools
Lingue Supportate 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"
}