Stream Monitor
Small and unobtrusive Overlay for displaying Video information from streamed content
Stream Monitor란 무엇입니까?
Stream Monitor은(는) https://somecode.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Small and unobtrusive Overlay for displaying Video information from streamed content"입니다.
확장 프로그램 스크린샷
Stream Monitor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Stream Monitor |
ID | hllemmijalhngocmppobjmlebadphhho |
공식 URL | https://chromewebstore.google.com/detail/stream-monitor/hllemmijalhngocmppobjmlebadphhho |
설명 | Small and unobtrusive Overlay for displaying Video information from streamed content |
파일 크기 | 97.65 KB |
설치 횟수 | 545 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2022-08-31 |
출시 날짜 | 2020-08-02 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://somecode.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://stream-monitor.somecode.dev |
도움말 페이지 URL | https://discord.gg/JHT8A8u |
지원되는 언어 | 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": [ " |