Ui Video Tools
Adds an expand button to the unifi video interface
Hvad er Ui Video Tools?
Ui Video Tools er en Chrome-udvidelse udviklet af littlej247, og dens hovedfunktion er "Adds an expand button to the unifi video interface".
Udvidelsesskærmbilleder
Download Ui Video Tools-udvidelses-CRX-fil
Download Ui Video Tools-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Ui Video Tools |
ID | mbokldhgijagdechaddhaplkkkihmnda |
Officiel URL | https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda |
Beskrivelse | Adds an expand button to the unifi video interface |
Filstørrelse | 6.16 KB |
Antal Installationer | 399 |
Nuværende Version | 0.1 |
Senest Opdateret | 2020-11-15 |
Udgivelsesdato | 2020-11-15 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | littlej247 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/littlej247/Unifi-Video-Tools |
Understøttede Sprog | 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" } |