Ui Video Tools

Adds an expand button to the unifi video interface

ما هو Ui Video Tools؟

Ui Video Tools هو إضافة Chrome تم تطويرها بواسطة littlej247، والميزة الرئيسية لها هي "Adds an expand button to the unifi video interface".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Ui Video Tools

قم بتنزيل ملفات الامتداد Ui Video Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
}