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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Ui Video Tools
Λήψη αρχείων επέκτασης 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 |
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" } |