BREAKING: Tampermonkey Script to Ignore Users on TheColi

null

...
Joined
Nov 12, 2014
Messages
35,256
Reputation
6,825
Daps
53,805
Reppin
UK, DE, GY, DMV
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.

:hubie:

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*$/, '');
                }
            }
        });

    });
})();
 

null

...
Joined
Nov 12, 2014
Messages
35,256
Reputation
6,825
Daps
53,805
Reppin
UK, DE, GY, DMV
OP wants us to use tampermonkey
a5vaIXz.png

all the advanced users want you to jack


:ufdup:
 

null

...
Joined
Nov 12, 2014
Messages
35,256
Reputation
6,825
Daps
53,805
Reppin
UK, DE, GY, DMV
get your keystrokes logged and your passwords stolen brehs

it's plaintext code. you can read it yourself.

this might be older:

 

boogers

7097556EL3/93
Supporter
Joined
Mar 11, 2022
Messages
15,119
Reputation
6,970
Daps
41,807
Reppin
#catset #jetset
get your keystrokes logged and your passwords stolen brehs
nothing in the code does that

OP, does it work on posts from human-animal hybrids? or do i need to put @Kasper KArr's momma in the pet sematary again?

still cant get that smell out of my car :scust:

(in all seriousness thanks. theres some real weirdoes on here)
 
Top