Trovo View

Trovo View

The extension allows you to display information about streams from the site Trovo.live

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://open-api.trovo.live/*"
      ],
      "js": [
        "popup.js",
        "options.js",
        "language.js"
      ]
    }
  ],
  "host_permissions": [
    "*://trovo.live/*"
  ],
  "action": {
    "default_title": "Trovo View",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "img/trovo_icon.png"
  }
}