Ui Video Tools

Adds an expand button to the unifi video interface

什么是Ui Video Tools?

Ui Video Tools是由littlej247开发的Chrome扩展程序,该扩展的主要功能是“Adds an expand button to the unifi video interface”。

扩展截图

screenshot
screenshot

下载Ui Video Tools扩展crx文件

下载Ui Video Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Ui Video Tools Ui Video Tools
ID mbokldhgijagdechaddhaplkkkihmnda
官方URL https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda
简介 Adds an expand button to the unifi video interface
文件大小 6.16 KB
安装次数 399
当前版本 0.1
更新时间 2020-11-15
上架时间 2020-11-15
评分 5.00/5 共1次评分
开发者 littlej247
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/littlej247/Unifi-Video-Tools
支持的语言 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"
}