Twitch Chat Blocker

Twitch Chat Blocker

Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Chat Blocker",
  "description": "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!",
  "version": "0.0.2",
  "browser_action": {
    "default_icon": "icon_16x16.png",
    "default_popup": "background/popup.html"
  },
  "icons": {
    "16": "icon_16x16.png",
    "48": "icon_48x48.png",
    "128": "icon_128x128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "css": [
        "front/css.css"
      ],
      "js": [
        "deps/fontawesome.js",
        "deps/jquery.js",
        "front/twitchChatScript.js"
      ]
    }
  ]
}