null
...
Use the following Tampermonkey script to Ignore users ...
Install Tampermonkey in your browser and add the following script.
You can automate timeouts etc yourself.
Replace null, null2 with the users you want to ignore.

Install Tampermonkey in your browser and add the following script.
You can automate timeouts etc yourself.
Replace null, null2 with the users you want to ignore.

Code:
// ==UserScript==
// @name HideInfo
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Hide posts by user actions
// @match https://www.thecoli.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const HIDDEN_USERS = ['null', 'null2'];
HIDDEN_USERS.forEach(user => {
document.querySelectorAll(`article.message[data-author="${user}"]`).forEach(el => {
el.style.display = 'none';
});
document.querySelectorAll(`blockquote[data-quote="${user}"]`).forEach(el => {
el.style.display = 'none';
});
document.querySelectorAll('.reactionsBar-link bdi').forEach(el => {
if (el.textContent.trim() === user) {
el.style.display = 'none';
const prev = el.previousSibling;
if (prev && prev.nodeType === Node.TEXT_NODE) {
prev.textContent = prev.textContent.replace(/,\s*$/, '');
}
}
});
});
})();




