Stream Monitor

Stream Monitor

Small and unobtrusive Overlay for displaying Video information from streamed content

Merlin
Additional files are visible only to premium users

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