Ui Video Tools

Adds an expand button to the unifi video interface

Wat is Ui Video Tools?

Ui Video Tools is een Chrome-extensie ontwikkeld door littlej247, en de belangrijkste functie is "Adds an expand button to the unifi video interface".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Ui Video Tools

Download Ui Video Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
Officiële URL https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
Beschrijving Adds an expand button to the unifi video interface
Bestandsgrootte 6.16 KB
Aantal Installaties 399
Huidige Versie 0.1
Laatst Bijgewerkt 2020-11-15
Publicatiedatum 2020-11-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar littlej247
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/littlej247/Unifi-Video-Tools
Ondersteunde Talen 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"
}