Remove User Avatars from LZT

Removes all user avatars from Zelenka.guru

目前為 2024-03-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Remove User Avatars from LZT
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removes all user avatars from Zelenka.guru
// @author       @vortexvisuals
// @match        https://zelenka.guru/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function removeAvatars() {
        // Находим все ссылки с классом, начинающимся на 'avatar', и удаляем их
        const avatarLinks = document.querySelectorAll('a[class^="avatar"]');
        avatarLinks.forEach(link => {
            link.style.display = 'none'; // Скрываем ссылку, включая вложенный элемент img
        });
    }

    // Вызываем функцию при загрузке страницы
    window.addEventListener('load', removeAvatars);

    // Для динамически загружаемого контента можно использовать MutationObserver
    const observer = new MutationObserver(mutations => {
        mutations.forEach(mutation => {
            if (mutation.addedNodes.length) removeAvatars();
        });
    });

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

QingJ © 2025

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