Ui Video Tools

Adds an expand button to the unifi video interface

Ui Video Tools क्या है?

Ui Video Tools littlej247 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an expand button to the unifi video interface"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ui Video Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}