Twitch Shadow Ban

Twitch Shadow Ban

Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their…

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 Shadow Ban",
  "version": "1.0",
  "permissions": [
    "background",
    "storage",
    "tabs",
    "https://www.twitch.tv/*"
  ],
  "icons": {
    "16": "16_16.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}