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”。

扩展截图

screenshot
screenshot

下载Stream Monitor扩展crx文件

下载Stream Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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": [
                ""
            ]
        }
    ],
    "manifest_version": 3
}