diff --git a/src/modules/chat/index.js b/src/modules/chat/index.js
index b60849a6..ddbe7ee7 100644
--- a/src/modules/chat/index.js
+++ b/src/modules/chat/index.js
@@ -363,6 +363,16 @@ export default class Chat extends Module {
}
});
+ this.settings.add('chat.filtering.highlight-basic-users-temp', {
+ default: [],
+ type: 'array_merge',
+ always_inherit: true,
+ ui: {
+ path: 'Chat > Filtering >> Temporary User Highlights',
+ component: 'temp-highlights',
+ }
+ });
+
this.settings.add('chat.filtering.highlight-basic-users--color-regex', {
requires: ['chat.filtering.highlight-basic-users'],
equals: 'requirements',
diff --git a/src/modules/main_menu/components/temp-highlights.vue b/src/modules/main_menu/components/temp-highlights.vue
new file mode 100644
index 00000000..23939aa8
--- /dev/null
+++ b/src/modules/main_menu/components/temp-highlights.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
\ No newline at end of file