Загрузка...

Funny For the equal rights of Kekov

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

  1. Dimeria
    Dimeria Topic starter Apr 8, 2025 Не в деньгах сила, но вес имеют. 5742 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]
     
    1. MeasureYaNeYT
    2. Dimeria Topic starter
  2. ПапочкаПудж
    Кайф, антилычку бы вообще внедрить на уровне форума, лишняя нагрузка для глаз, каждую строчку лычка
     
    1. Dimeria Topic starter
  3. Cweto4ek
    Cweto4ek Apr 8, 2025 :peace: Большие СИСЬКИИ в закрепе: t.me/Kanalchik_alexa :catpls: 48 Feb 21, 2025
    Сделай всех серыми и всё
     
    1. MeasureYaNeYT
    2. VenZ
  4. лолзтим
    Сделай скрипт АнтиКеки
     
    1. ПапочкаПудж
      лолзтим, мнение уников не учитывается :solevoi:
    2. Dimeria Topic starter
  5. VenZ
    VenZ Apr 8, 2025 Не забыть поставить статус :torch: 1283 Nov 21, 2021
    В любом случии они виноваты :colobok_idk:
     
  6. BrawlStars
    BrawlStars Apr 8, 2025 Связь в ЛС форума 250 Feb 15, 2023
    Наконец-то всех уровняли
     
  7. Архистратиг
    Архистратиг Apr 8, 2025 аниме малышка продается - https://lolz.live/threads/7421153/ 16,599 Jul 26, 2020
    Лычка у ника прям лишнее, перегруз для глаз, считая, что каждый 2-ой уник
    Хороший скрипт
     
  8. Dimeria
    Dimeria Topic starter Apr 9, 2025 Не в деньгах сила, но вес имеют. 5742 Oct 21, 2018
    Опа, а кто тему восстановил :)
     
Loading...
Top