Ui Video Tools
Adds an expand button to the unifi video interface
O que é Ui Video Tools?
Ui Video Tools é uma extensão do Chrome desenvolvida por littlej247, e sua principal característica é "Adds an expand button to the unifi video interface".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Ui Video Tools
Baixe arquivos de extensão Ui Video Tools no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Ui Video Tools |
ID | mbokldhgijagdechaddhaplkkkihmnda |
URL Oficial | https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda |
Descrição | Adds an expand button to the unifi video interface |
Tamanho do Arquivo | 6.16 KB |
Contagem de Instalações | 399 |
Versão Atual | 0.1 |
Última Atualização | 2020-11-15 |
Data de Publicação | 2020-11-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | littlej247 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/littlej247/Unifi-Video-Tools |
Idiomas Suportados | 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" } |