Skip to content

Instantly share code, notes, and snippets.

@fluteds
Last active January 14, 2023 00:46
Show Gist options
  • Save fluteds/a97038a7ffa1beece30974ec8cca0291 to your computer and use it in GitHub Desktop.
Save fluteds/a97038a7ffa1beece30974ec8cca0291 to your computer and use it in GitHub Desktop.
Chat filters for Chatterino
"filtering": {
"filters": [
{
"name": "9+ Months Subscriber Mode",
"filter": "(author.sub_length) > (8)",
"id": "634e11a8-d404-43d0-8118-c3dd32b490de"
},
{
"name": "6+ Months Sub Mode",
"filter": "(author.sub_length) > (5)",
"id": "33c27da2-8fcc-4124-ae21-cd09076d7d64"
},
{
"name": "Highlighted Users ONLY",
"filter": "flags.highlighted",
"id": "ffba0b54-2066-4f69-adce-7a4cd910beb8"
},
{
"name": "Sub Mode ONLY",
"filter": "author.subbed",
"id": "d1ad8b6f-860d-45c4-bb89-ed8be3d4c902"
},
{
"name": "Clean Chat (ALL Filters Combined)",
"filter": "!author.name match r\"^(RibCrush|PhantomBot|Wizebot|Coebot|Moobot|Nightbot|StreamElements|Fossabot|ThePositiveBot|SupiBot)$\" && !message.content match r\"^(!|#|\\$|%|\\^|&|\\*|<|>|`|~|-|;|m!|\\\\|/|@@)\" && !message.content match r\"^\\[.*] peepoTalk.*ImTalking\" && !flags.system_message",
"id": "30c55051-430f-4ef0-a543-edd3b5e45d32"
},
{
"name": "NO Bots",
"filter": "!author.name match r\"^(RibCrush|PhantomBot|Wizebot|Coebot|Moobot|Nightbot|StreamElements|Fossabot|ThePositiveBot|SupiBot)$\"",
"id": "1b184b48-fef5-44b6-bea1-00116f16b00b"
},
{
"name": "NO Commands",
"filter": "!message.content match r\"^(!|#|\\$|%|\\^|&|\\*|<|>|`|~|-|;|m!|\\\\|/|@@)\"",
"id": "366cf514-3a92-430a-9f74-39a43ca386cc"
},
{
"name": "NO Transcribing",
"filter": "!message.content match r\"^\\[.*] peepoTalk.*ImTalking\"",
"id": "51058dae-3756-4a24-b5d3-04b459fdcf66"
},
{
"name": "NO System Messages",
"filter": "!flags.system_message",
"id": "7ffffbac-cb3e-4633-b616-ee341511e0b8"
},
{
"name": "NO Grey Named Chatters",
"filter": "(!(author.no_color) || flags.system_message || flags.whisper || flags.highlighted || flags.points_redeemed || flags.sub_message)",
"id": "1f836095-2196-4fd9-bcb3-bbdef8a51a01"
}
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment