Ui Video Tools
Adds an expand button to the unifi video interface
Vad är Ui Video Tools?
Ui Video Tools är en Chrome-tillägg utvecklad av littlej247, och dess huvudfunktion är "Adds an expand button to the unifi video interface".
Tilläggsskärmbilder
Ladda ner Ui Video Tools-förlängningens CRX-fil
Ladda ner Ui Video Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Ui Video Tools |
ID | mbokldhgijagdechaddhaplkkkihmnda |
Officiell webbadress | https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda |
Beskrivning | Adds an expand button to the unifi video interface |
Filstorlek | 6.16 KB |
Antal Installationer | 399 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2020-11-15 |
Publiceringsdatum | 2020-11-15 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | littlej247 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/littlej247/Unifi-Video-Tools |
Stödda Språk | 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" } |