HD Camera Feed in Video Calls
Try to enforce HD (16:9) camera aspect ratio for web-video calls
Τι είναι το HD Camera Feed in Video Calls;
Το HD Camera Feed in Video Calls είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Getify Solutions, και η κύρια λειτουργία του είναι "Try to enforce HD (16:9) camera aspect ratio for web-video calls".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης HD Camera Feed in Video Calls
Λήψη αρχείων επέκτασης HD Camera Feed in Video Calls σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This browser extension attempts to fix a problem I've experienced on some video-calling sites (specifically, Zoom/WhereBy/Google-Meet), where their web clients don't properly ask for HD (1280x720 or 1920x1080) resolution from your camera, and in some cases (like mine) it results in squished/distorted video instead of just nice cropping as would be expected. This extension patches the built-in "getUserMedia(..)" API to intercept these kinds of calls and to force a request for 1280x720. Thus, if your camera supports that 16:9 HD aspect ratio, a proper non-squished feed will be returned to the web client. If your camera only supports 4:3 aspect ratio, such as 1024x768 or 640x480, then the request should nicely downgrade for your camera and still provide non-squished (albeit not-HD aspect ratio) video for your calls. By default, the settings for this extension only apply the patch to Zoom/WhereBy/Google-Meet sites. You can change the settings to apply to different sites. There's also a handy enable/disable toggle switch if you want to quickly turn off the extension temporarily without actually uninstalling it.
Βασικές Πληροφορίες Επέκτασης
Όνομα | HD Camera Feed in Video Calls |
ID | aojddkcamiecmkmbecpkjddnhpnpoaab |
Επίσημο URL | https://chromewebstore.google.com/detail/hd-camera-feed-in-video-c/aojddkcamiecmkmbecpkjddnhpnpoaab |
Περιγραφή | Try to enforce HD (16:9) camera aspect ratio for web-video calls |
Μέγεθος Αρχείου | 106 KB |
Αριθμός Εγκαταστάσεων | 1,606 |
Τρέχουσα Έκδοση | 1 |
Τελευταία Ενημέρωση | 2020-09-25 |
Ημερομηνία Δημοσίευσης | 2020-09-25 |
Αξιολόγηση | 4.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | Getify Solutions |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/getify/gum-try-hd |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/getify/gum-try-hd/issues |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/getify/gum-try-hd/blob/master/README.md |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HD Camera Feed in Video Calls", "author": "Kyle Simpson", "version": "1", "description": "Try to enforce HD (16:9) camera aspect ratio for web-video calls", "icons": { "16": "images\/logo-16.png", "24": "images\/logo-24.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "96": "images\/logo-96.png", "128": "images\/logo-128.png" }, "options_ui": { "page": "settings.html", "chrome_style": true }, "background": { "scripts": [ "js\/external\/webextension-polyfill.min.js", "js\/controller.js" ], "persistent": false }, "content_scripts": [], "web_accessible_resources": [ "js\/patch-gum.js" ], "permissions": [ "https:\/\/*\/*", "storage", "tabs" ] } |