-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
For the desktop I have the following code running:
setInterval(function(){
var messages = document.querySelectorAll('[class^="messageListItem"]');
messages.forEach(msg => {
const replyTxt = msg.querySelector('[class^="repliedTextPlaceholder"]');
if (replyTxt && replyTxt.textContent === 'Blocked message.') {
if(msg.style.display !== "none") msg.style.display = "none";
}
});
}, 500);
This hides messages that are responding to users you've blocked.
Is there any way to port this into the HideBlockedMessages plugin?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request