/
{
"deleteMessage": false, // Delete the entire message if a blacklisted word is found
"blacklist": [ // add your own words here (replace badword1 etc)
"badword1",
"badword2", // make sure you add commas at the end of every entry to the list
"badword3" // DON'T add a comma at the end of the final entry in the list
],
"repeatCharForLengthOfWord": false, // will replace the blacklisted word for the entire length of the word
"customChar": false, // if you want to use your own character instead of the default space
"replaceWith": "*", // if customChar is set to true, will use this character instead of default space
"repeatChar": 1 // if this number (integer) is higher than 1, and repeatCharForLengthOfWord is set to false, this will replace the blacklisted word for the length of this number
}

Create your own blacklist of words to be removed from all chat messages on a server. (It will replace the word with a single space)