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
官方網址 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"
}