mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-14 07:57:57 -05:00
14 lines
235 B
Plaintext
14 lines
235 B
Plaintext
// goes inside
|
|
// "rules": []
|
|
{
|
|
"name": "swear",
|
|
"kind": "regex",
|
|
"criteria": [
|
|
{
|
|
"regex": "/fuck|shit|damn/",
|
|
// triggers if current activity has greater than 5 matches
|
|
"matchThreshold": "> 5"
|
|
},
|
|
]
|
|
}
|