Twitch chat cleaner

Add spam controls and filters to twitch chat.

These are versions of this script where the code was updated. Show all versions.

  • v0.21 05/05/2024

    Fix flickering issues when removing messages.

  • v0.20 10/08/2021

    BREAKING CHANGE

    Regular expression handling has been updated to be more flexible. When a filter is a regular expression, we now test the whole message, not each word as it did previously.

    That means that all your regex filters will break. To have them work exactly as before, replace:

    /pog/
    

    with

    /.*pog.*/i
    

    NEW FEATURE

    There's a new configuration in the form for "allow words". Messages containing any of the configured words will be allowed, overriding any other filters. This is useful, for example, to always display messages @'ing you.

  • v0.10 17/01/2021 Switch to dark mode by default
  • v0.9 17/01/2021 Fix re-initialisation on navigation and added min-words option
  • v0.8 10/07/2020 Add option to log blocked messages
  • v0.7 10/07/2020 Always log blocked messages
  • v0.6 04/07/2020
  • v0.5 03/07/2020