StreamTest
Test live video streams
StreamTest là gì?
StreamTest là một tiện ích mở rộng Chrome được phát triển bởi https://forasoft.com, và tính năng chính của nó là "Test live video streams".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng StreamTest
Tải xuống các tệp mở rộng StreamTest dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
StreamTest helps you check your participant’s video connection. Check your participant’s video connection with StreamTest. Chatting with someone and they just keep lagging? Don’t let them leave the meeting for hours to reset the router, reboot the PC, pay a visit to the internet service provider’s office, or buy a new computer. No need to shoot in the dark, as you will definitely know what’s up. StreamTest is a browser extension by Fora Soft. It works in any WebRTC video chat, such as Google Meet, iMind, and ProVideoMeeting. All you have to do is install the software in Chrome, click on your friend with the right mouse button, and enable StreamTest. Now you can monitor your participant’s: - Frame rate or just FPS (the higher the better) - Video and Audio delay: delay is never welcome (the lower the better) - Packet loss: shows if any packets were lost on their way to the server (the lower the better) - Resolution: mostly depends on the participant’s camera and the device you’re using to chat (the higher the better) - Freezes and stalls: shows how much % of your call was wasted due to lags (the lower the better) - Bitrate: responsible for how smooth the picture is (the higher the better) - Video and Audio codec — just so you know. Having a hard time interpreting the data right away or want to save logs for future use? Click on the downward arrow on the top of the screen and download the log to check it later or show it to a programmer. StreamTest starts collecting data once you enable it. To do it, click your right mouse button on the other participant’s stream and tap “Test stream” in the context menu. It will stop collecting the data once you close the extension / start testing another stream / go to the extension main screen.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | StreamTest |
ID | apmgkjaoljlahcldcoekghdngcbceebf |
URL Chính Thức | https://chromewebstore.google.com/detail/streamtest/apmgkjaoljlahcldcoekghdngcbceebf |
Mô tả | Test live video streams |
Kích Thước Tệp | 233 KB |
Số Lần Cài Đặt | 227 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2022-09-03 |
Ngày Phát Hành | 2022-08-07 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://forasoft.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://forasoft.com/contacts |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "StreamTest", "version": "1.0.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "description": "Test live video streams", "icons": { "512": "logo512.png" }, "web_accessible_resources": [ { "resources": [ "index.html", "injection.js" ], "matches": [ "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/" ], "js": [ "main.js" ], "run_at": "document_end" } ], "permissions": [ "contextMenus", "activeTab", "scripting" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/*" ], "action": { "default_icon": "logo512.png" } } |