Twitch Chat Danmaku

Twitch Chat Danmaku

Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.4.9",
  "description": "__MSG_appDescription__",
  "background": {
    "scripts": [
      "lib/jQuery/jquery-3.3.1.min.js",
      "background.js"
    ],
    "persistant": false
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "*://*.twitch.tv/*",
    "declarativeContent",
    "fontSettings",
    "tabs"
  ],
  "content_scripts": [
    {
      "css": [
        "css/danmaku.css"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "lib/jQuery/jquery-3.3.1.min.js",
        "danmaku.js",
        "twitchChatDanmaku.js"
      ]
    }
  ],
  "page_action": {
    "default_title": "__MSG_appName__",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "64": "icons/icon-64.png",
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "default_locale": "en"
}