Chat Room Popup Tool

Chat Room Popup Tool

Let you to add a Chat Room Popup on Twitch or YouTube live video, even in fullscreen mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.3.1",
  "author": "Martin",
  "default_locale": "en",
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "browser_action": {
    "default_icon": "icon/icon.png",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "setting.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://www.twitch.tv/*"
      ],
      "js": [
        "js/execute.js",
        "js/jquery-3.5.1.min.js"
      ]
    }
  ]
}