Greasy Fork is available in English.

YouTube UTTP Link Remover

Removes elements containing UTTP links on YouTube

// ==UserScript==
// @name         YouTube UTTP Link Remover
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removes elements containing UTTP links on YouTube
// @match        https://www.youtube.com/*
// @grant        none
// @author       SexMaker
// @description  You guys know the fukin UTTP retards who have taken over every comment section. Well heres a way to get rid of em. Enjoy.
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function removeUTTPLinks() {
        const links = document.getElementsByTagName('a');
        for (let link of links) {
            for (let attr of link.attributes) {
                if (attr.value.includes("UTTP")) {
                    let parent = link;
                    for (let i = 0; i < 6; i++) {
                        if (parent.parentElement) {
                            parent = parent.parentElement;
                        } else {
                            break;
                        }
                    }
                    if (parent) {
                        parent.remove();
                    }
                    break;
                }
            }
        }
    }

    // Run the function initially
    removeUTTPLinks();

    // Set up a MutationObserver to watch for changes in the DOM
    const observer = new MutationObserver(removeUTTPLinks);
    observer.observe(document.body, { childList: true, subtree: true });
})();