Stream Monitor
Small and unobtrusive Overlay for displaying Video information from streamed content
Stream Monitor là gì?
Stream Monitor là một tiện ích mở rộng Chrome được phát triển bởi https://somecode.dev, và tính năng chính của nó là "Small and unobtrusive Overlay for displaying Video information from streamed content".
Ả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 Stream Monitor
Tải xuống các tệp mở rộng Stream Monitor 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
Small Chrome Extension to visualise some useful basic stream information. Currently usable in Stadia, Twitch & YouTube. Stream Monitor aims to show some basic information, in a meaningful but unobtrusive way. Currently, we show: * Resolution. * Frames per Second. * Frame Drops per Second. * Browser Time (This is local to your browser and may not be completely accurate) These are all switchable from the extension menu. You can also move the whole monitor to either the top (default) or the bottom of the screen, as well as Left, Right and any combination of the 4.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Stream Monitor |
ID | hllemmijalhngocmppobjmlebadphhho |
URL Chính Thức | https://chromewebstore.google.com/detail/stream-monitor/hllemmijalhngocmppobjmlebadphhho |
Mô tả | Small and unobtrusive Overlay for displaying Video information from streamed content |
Kích Thước Tệp | 97.65 KB |
Số Lần Cài Đặt | 545 |
Phiên Bản Hiện Tại | 1.3.0 |
Cập Nhật Lần Cuối | 2022-08-31 |
Ngày Phát Hành | 2020-08-02 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://somecode.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://stream-monitor.somecode.dev |
URL Trang Trợ Giúp | https://discord.gg/JHT8A8u |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stream Monitor", "short_name": "Stream Monitor", "omnibox": { "keyword": "Stream Monitor" }, "homepage_url": "https:\/\/stream-monitor.somecode.dev", "author": "James King (bassforce86)", "version": "1.3.0", "description": "Small and unobtrusive Overlay for displaying Video information from streamed content", "icons": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-72x72.png", "128": "images\/icon-144x144.png" }, "permissions": [ "declarativeContent", "storage" ], "host_permissions": [ "https:\/\/stadia.google.com\/*", "https:\/\/*.twitch.tv\/*", "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/stadia.google.com\/*", "https:\/\/*.twitch.tv\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "src\/css\/_vars.css", "src\/css\/positions.css", "src\/css\/views\/monitor.css" ] } ], "action": { "default_popup": "src\/popup.html", "default_title": "Stream Monitor", "default_icon": { "16": "images\/icon-16x16.png", "24": "images\/icon-32x32.png", "32": "images\/icon-32x32.png" } }, "web_accessible_resources": [ { "resources": [ "src\/*" ], "matches": [ " |