Hide Twitch Chat Users

Hide Twitch Chat Users

Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Twitch Chat Users",
  "description": "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).",
  "version": "2.1.0",
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "{6b982795-4e75-4bc0-a1d8-616f4eb39970}"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}