Ui Video Tools
Adds an expand button to the unifi video interface
What is Ui Video Tools?
Ui Video Tools is a Chrome extension developed by littlej247, and its main feature is "Adds an expand button to the unifi video interface".
Extension Screenshots
Download Ui Video Tools Extension CRX File
Download Ui Video Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Ui Video Tools |
ID | mbokldhgijagdechaddhaplkkkihmnda |
Official URL | https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda |
Description | Adds an expand button to the unifi video interface |
File Size | 6.16 KB |
Installation Count | 399 |
Current Version | 0.1 |
Last Updated | 2020-11-15 |
Publish Date | 2020-11-15 |
Rating | 5.00/5 Total 1 Ratings |
Developer | littlej247 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/littlej247/Unifi-Video-Tools |
Supported Languages | 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" } |