Remove Ignored Posts and Comments

Удаляет комментарии и посты с классом "ignored"

// ==UserScript==
// @name         Remove Ignored Posts and Comments
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Удаляет комментарии и посты с классом "ignored"
// @author       eretly
// @match        https://lolz.live/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function removeIgnoredElements() {
        const ignoredElements = document.querySelectorAll('.ignored');
        ignoredElements.forEach(element => {
            if (element.closest('li.message, li.comment, li.messageSimple')) {
                element.closest('li.message, li.comment, li.messageSimple').remove();
            } else {
                element.style.display = 'none';
            }
        });
    }

    removeIgnoredElements();

    const observer = new MutationObserver(() => {
        removeIgnoredElements();
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址