Twitch chat overlay on fullscreen

Twitch chat overlay on fullscreen

Free Twitch chat,send messages,emotes,and anything you can do in the chat box while Twitch fullscreen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2.0",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "64": "icon/64.png",
    "128": "icon/128.png",
    "256": "icon/256.png",
    "512": "icon/512.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/actualContent.js",
        "img/*.png"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon/16.png",
      "32": "icon/32.png",
      "48": "icon/48.png",
      "64": "icon/64.png",
      "128": "icon/128.png",
      "256": "icon/256.png",
      "512": "icon/512.png"
    }
  }
}