Загрузка...

Funny
For the equal rights of Kekov

Thread in Extentions created by Dimeria Apr 8, 2025. (bumped Apr 14, 2025) 413 views

  1. Dimeria
    Dimeria Topic starter Apr 8, 2025 Надежные сервера - https://lolz.live/threads/8521489/ 9,376 Oct 21, 2018
    Маленький скриптец, который позволяет кекам, чувствовать себя более уверенными на форуме, так как, собратьев кекусов теперь стало куда больше :3 :cutecat:
    НЕ РАСПРОСТРАНЯЕСЯ НА ОСТАЛЬНЫЕ ПРИВИЛЕГИИ!!!
    JS
    // ==UserScript==
    // @name Прочёл? -гей
    // @namespace http://tampermonkey.net/
    // @version 1.8
    // @description Removes uniqUsernameIcon elements. Handles dynamic content.
    // @match https://zelenka.guru/*
    // @match https://lolz.live/*
    // @match https://lolz.guru/*
    // @match https://lzt.market/*
    // @match https://lolz.market/*
    // @match https://zelenka.market/*
    // @grant none
    // ==/UserScript==

    (function() {
    'use strict';

    function removeUniqUsernameIcons() {
    const icons = document.querySelectorAll('span.uniqUsernameIcon');
    icons.forEach(icon => icon.remove());
    }

    // Initial removal
    removeUniqUsernameIcons();

    // Observe DOM changes
    const observer = new MutationObserver(mutations => {
    mutations.forEach(mutation => {
    if (mutation.addedNodes.length) {
    removeUniqUsernameIcons();
    }
    });
    });

    observer.observe(document.body, {
    childList: true,
    subtree: true
    });
    })();
    ДО[IMG] ПОСЛЕ[IMG]
    JS
    // ==UserScript==
    // @name Ты не ты когда не гей
    // @namespace http://tampermonkey.net/
    // @version 2.5
    // @description Combines clearing styles, removing uniqUsernameIcons, customUniqIcons, and avatar badges.
    // @match https://zelenka.guru/*
    // @match https://lolz.live/*
    // @match https://lolz.guru/*
    // @match https://lzt.market/*
    // @match https://lolz.market/*
    // @match https://zelenka.market/*
    // @grant none
    // ==/UserScript==

    (function() {
    'use strict';

    function clearSpecificStyles() {
    const spans = document.querySelectorAll('span');

    spans.forEach(span => {
    if (span.style) {
    if (span.style.color === 'rgba(255, 77, 0, 1)') {
    span.style.color = ''; // Или span.style.color = 'initial';
    }
    if (span.style.color === 'rgba(100, 100, 198, 1)') {
    span.style.color = ''; // Или span.style.color = 'initial';
    }
    if (
    (span.style.webkitTextFillColor === 'transparent' && span.style.background) ||
    span.style.textShadow
    ) {
    span.style = "";
    }
    }
    });
    }

    function removeUniqUsernameIcons() {
    const icons = document.querySelectorAll('span.uniqUsernameIcon');
    icons.forEach(icon => icon.remove());
    }

    function removeCustomUniqIcons() {
    const customIcons = document.querySelectorAll('div.customUniqIcon');
    customIcons.forEach(icon => icon.remove());
    }

    function removeAvatarUserBadges() {
    const badges = document.querySelectorAll('[class*="avatarUserBadges u"] > span.avatarUserBadge.Tooltip');
    badges.forEach(badge => {
    badge.remove();
    });
    }

    clearSpecificStyles();
    removeUniqUsernameIcons();
    removeCustomUniqIcons();
    removeAvatarUserBadges();

    const observer = new MutationObserver(mutations => {
    mutations.forEach(mutation => {
    if (mutation.addedNodes.length) {
    clearSpecificStyles();
    removeUniqUsernameIcons();
    removeCustomUniqIcons();
    removeAvatarUserBadges();
    }
    });
    });

    observer.observe(document.body, {
    childList: true,
    subtree: true
    });
    })();
    ДО[IMG]ПОСЛЕ[IMG]
     
    This article was useful for you?
    You can thank the author of the topic by transferring funds to your balance
    Thank the author
    1. Dimeria Topic starter
  2. ПапочкаПудж
    ПапочкаПудж Apr 8, 2025 Изменить статус 16,302 Jun 10, 2018
    Кайф, антилычку бы вообще внедрить на уровне форума, лишняя нагрузка для глаз, каждую строчку лычка
     
    1. Dimeria Topic starter
  3. Cweto4ek
    Cweto4ek Apr 8, 2025 Яндекс Плюс инвайты:
    Telegram: View @Flowerinvites
    :catpls:
    57 Feb 21, 2025
    Сделай всех серыми и всё
     
    1. mEaSuReYaNeYT
    2. VenZ
  4. лолзтим
    лолзтим Apr 8, 2025 :cat_shake::cat_shake::cat_shake::cat_shake::cat_shake: 7,576 May 30, 2022
    Сделай скрипт АнтиКеки
     
    1. ПапочкаПудж
      avatarлолзтим, мнение уников не учитывается :solevoi:
    2. Dimeria Topic starter
  5. VenZ
    В любом случии они виноваты :colobok_idk:
     
  6. Милк
    Милк Apr 8, 2025 267 Feb 15, 2023
    Наконец-то всех уровняли
     
  7. TiHostLiza
    Лычка у ника прям лишнее, перегруз для глаз, считая, что каждый 2-ой уник
    Хороший скрипт
     
  8. Dimeria
    Dimeria Topic starter Apr 9, 2025 Надежные сервера - https://lolz.live/threads/8521489/ 9,376 Oct 21, 2018
    Опа, а кто тему восстановил :)
     
Loading...