VKPlay.live Now

VKPlay.live Now

The extension allows you to display information about streams from the site VK Play.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.14",
  "content_scripts": [
    {
      "matches": [
        "*://api.vkplay.live/*",
        "*://live.vkplay.ru/*"
      ],
      "js": [
        "contentScripts.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "*://live.vkplay.ru/*",
    "*://api.vkplay.live/*"
  ],
  "action": {
    "default_title": "VKPlay.live Now",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "cookies",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "executeBonus.js"
      ],
      "matches": [
        "*://live.vkplay.ru/*"
      ]
    }
  ]
}