Twitch Chat Beautify

Twitch Chat Beautify

Improve the aesthetics of your Twitch chat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Improve the aesthetics of your Twitch chat.",
  "manifest_version": 3,
  "name": "Twitch Chat Beautify",
  "version": "1.5.6",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "TCB.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.twitch.tv/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "96": "icons/icon-96.png"
    },
    "theme_icons": [
      {
        "light": "icons/icon-96-dark.png",
        "dark": "icons/icon-96.png",
        "size": 96
      }
    ],
    "default_title": "Twitch Chat Beautify",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html"
  }
}