Stream Monitor
Small and unobtrusive Overlay for displaying Video information from streamed content
Was ist Stream Monitor?
Stream Monitor ist eine Chrome-Erweiterung, die von https://somecode.dev entwickelt wurde, und ihr Hauptmerkmal ist "Small and unobtrusive Overlay for displaying Video information from streamed content".
Erweiterungsscreenshots
Stream Monitor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stream Monitor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Stream Monitor |
ID | hllemmijalhngocmppobjmlebadphhho |
Offizielle URL | https://chromewebstore.google.com/detail/stream-monitor/hllemmijalhngocmppobjmlebadphhho |
Beschreibung | Small and unobtrusive Overlay for displaying Video information from streamed content |
Dateigröße | 97.65 KB |
Installationsanzahl | 545 |
Aktuelle Version | 1.3.0 |
Letztes Update | 2022-08-31 |
Veröffentlichungsdatum | 2020-08-02 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | https://somecode.dev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://stream-monitor.somecode.dev |
Hilfeseite URL | https://discord.gg/JHT8A8u |
Unterstützte Sprachen | 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": [ " |