Ui Video Tools
Adds an expand button to the unifi video interface
Apa itu Ui Video Tools?
Ui Video Tools adalah ekstensi Chrome yang dikembangkan oleh littlej247, dan fitur utamanya adalah "Adds an expand button to the unifi video interface".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Ui Video Tools
Unduh file ekstensi Ui Video Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Ui Video Tools |
ID | mbokldhgijagdechaddhaplkkkihmnda |
URL Resmi | https://chromewebstore.google.com/detail/ui-video-tools/mbokldhgijagdechaddhaplkkkihmnda |
Deskripsi | Adds an expand button to the unifi video interface |
Ukuran File | 6.16 KB |
Jumlah Instalasi | 399 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2020-11-15 |
Tanggal Publikasi | 2020-11-15 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | littlej247 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/littlej247/Unifi-Video-Tools |
Bahasa yang Didukung | 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" } |