Загрузка...

General topic with my additions

Thread in Extentions created by STEALYOURBRAIN Jul 23, 2023. (bumped Dec 10, 2023) 3851 view

  1. OlegBrawler
    Ну зачем так самокритично
     
  2. Rip
    Rip Aug 15, 2023 14,778 Aug 6, 2022
  3. самость
    Кнопка бабло
    [IMG]
     
  4. Voodoo
    Voodoo Aug 15, 2023 15,936 Jun 20, 2018
    уже давно есть кнопка автобабло
    [IMG]
     
    1. View previous comments (5)
    2. STEALYOURBRAIN Topic starter
    3. vuchaev2015
    4. llimonix
      vuchaev2015, делать деньги блять вот так
  5. бамблби
    бамблби Aug 15, 2023 меняю п2п 8222 Jul 13, 2020
    че за координаты? наркотой торгуешь?[IMG]
     
  6. aawaw
    [IMG]
    все по заказу
     
  7. 1xday
    один вопрос нахуя
     
    1. View previous comments (3)
    2. llimonix
      1xday, сделать?)))
  8. xCoup
    xCoup Aug 15, 2023 1317 Jul 4, 2023
    Лучший в мире кодер!
     
  9. salamanca
    salamanca Aug 15, 2023 ding ding ding 705 Jul 4, 2021
    ура деньги
     
  10. STEALYOURBRAIN
    Изменил дизайн кнопки и добавил анимацию.
    JS
    // ==UserScript==
    // @name Кнопка "Бабло" на zelenka.guru
    // @namespace http://tampermonkey.net/
    // @description Добавляет кнопку "Бабло" на ЛОЛЗ
    // @author stealyourbrain
    // @match https://zelenka.guru/*
    // ==/UserScript==

    (function() {
    'use strict';

    // Создание кнопки
    const moneyButton = document.createElement('a');
    moneyButton.textContent = '$Бабло$';
    moneyButton.href = 'https://zelenka.guru/forums/contests/';
    moneyButton.classList.add('money-button');

    // Стили для кнопки
    moneyButton.style.position = 'fixed';
    moneyButton.style.left = '165px';
    moneyButton.style.top = '440px';
    moneyButton.style.backgroundColor = '#4CAF50';
    moneyButton.style.color = 'white';
    moneyButton.style.padding = '10px 20px';
    moneyButton.style.border = 'none';
    moneyButton.style.borderRadius = '15px';
    moneyButton.style.cursor = 'pointer';
    moneyButton.style.transition = 'background-color 0.3s, transform 0.3s'; // Добавлена анимация transform
    moneyButton.style.textDecoration = 'none';

    // Анимация при наведении
    moneyButton.onmouseover = function() {
    this.style.backgroundColor = '#45a049';
    this.style.transform = 'scale(1.05)';
    };
    moneyButton.onmouseout = function() {
    this.style.backgroundColor = '#4CAF50';
    this.style.transform = 'scale(1)';
    };

    // Анимация движения при нажатии
    moneyButton.onmousedown = function() {
    this.style.transform = 'scale(1.05) translate(10px, 10px)'; // Смещение на 10 пикселей вправо и вниз
    };
    moneyButton.onmouseup = function() {
    this.style.transform = 'scale(1.05)'; // Возвращение в исходное положение
    };

    // Добавление кнопки на страницу
    document.body.appendChild(moneyButton);
    })();
     
  11. Siski_piski
    Siski_piski Aug 16, 2023 ПИЗДАТЫЙ ДИЗАЙН - https://lolz.live/threads/4141368/ :muscle: 14,567 Oct 25, 2021
    спасибо, дядя куратор, тоже заебал чат
     
  12. STEALYOURBRAIN
    [IMG]
    Скрывает вопросы на которые вы уже ответили. В разделе "Тематические вопросы"

    Ставим расширение Tampermonkey (кликабельно)
    Удаляем стандартный текст, вставляем мой.
    JS
    // ==UserScript==
    // @name Скрывает вопросы на которые уже был ответ.
    // @author stealyourbrain
    // @match https://zelenka.guru/forums/585/*
    // ==/UserScript==

    (function() {
    'use strict';

    let hideThreadsEnabled = true;

    function toggleHideThreads() {
    hideThreadsEnabled = !hideThreadsEnabled;
    if (hideThreadsEnabled) {
    hideThreads();
    } else {
    showAllThreads();
    }
    }

    function hideThreads() {
    const icons = document.querySelectorAll('i.fa.fa-bullseye.mainc.Tooltip[data-placement="left"]:not(.processed)');
    icons.forEach(icon => {
    const messageCell = icon.closest('.discussionListItem');
    if (messageCell) {
    messageCell.style.display = 'none';
    icon.classList.add('processed');
    }
    });
    }

    function showAllThreads() {
    const hiddenThreads = document.querySelectorAll('.discussionListItem[style="display: none;"]');
    hiddenThreads.forEach(thread => {
    thread.style.display = '';
    });
    }

    const discussionListOptions = document.querySelector('.DiscussionListOptions');
    if (discussionListOptions) {
    const toggleContainer = document.createElement('div');
    toggleContainer.style.backgroundColor = '#2D2D2D';
    toggleContainer.style.borderRadius = '8px';
    toggleContainer.style.boxShadow = '0px 2px 5px rgba(0, 0, 0, 0.1)';
    toggleContainer.style.padding = '8px';
    toggleContainer.style.display = 'flex';
    toggleContainer.style.alignItems = 'center';

    const toggleLabel = document.createElement('label');
    toggleLabel.textContent = 'Скрыть темы: ';
    toggleLabel.style.margin = '0';
    toggleLabel.style.color = '#fff';
    toggleLabel.style.fontWeight = 'bold';

    const toggleInput = document.createElement('input');
    toggleInput.type = 'checkbox';
    toggleInput.checked = hideThreadsEnabled;
    toggleInput.style.margin = '0';
    toggleInput.style.marginRight = '5px';
    toggleInput.style.cursor = 'pointer';
    toggleInput.style.border = 'none';
    toggleInput.addEventListener('change', toggleHideThreads);

    toggleLabel.appendChild(toggleInput);
    toggleContainer.appendChild(toggleLabel);
    discussionListOptions.appendChild(toggleContainer);
    }

    const observer = new MutationObserver(hideThreads);
    observer.observe(document.body, {
    childList: true,
    subtree: true
    });

    if (hideThreadsEnabled) {
    hideThreads();
    }
    })();
     
  13. vuchaev2015
    vuchaev2015 Aug 17, 2023 все ближе и ближе... 23,531 Feb 15, 2018
    ну набивать сообщения это одно, а другое это давать нормальные ответы. Как в темат вопросы не зайду, кто-то да напишет: "хз"
     
    1. View previous comments (5)
    2. mdeen
      vuchaev2015, ну все равно удалят "хз" так что не набить так :ok_lol:
    3. vuchaev2015
      vuchaev2015, [IMG]@STEALYOURBRAIN твоя тема счастливая
  14. СОБР
    СОБР Aug 17, 2023 не ну я в полном ахуе 155 Nov 2, 2021
    будешь крышей моей чтоб баллы не выдавали?
     
    1. View previous comments (3)
    2. СОБР
      OlegBrawler, ну тебе да надо бананы
    3. STEALYOURBRAIN Topic starter
    4. СОБР
      STEALYOURBRAIN, да он меня ненавидит походу я ему писать не хочу
  15. xCoup
    xCoup Aug 17, 2023 1317 Jul 4, 2023
    Годная фича, спасибо!
     
  16. a911
    a911 Aug 17, 2023 Продам рекламу в профиле lolz.live/threads/2604681 51,795 May 30, 2018
    Future иди, для тебя расширения сделали, набиватор
     
    1. View previous comments (6)
    2. OlegBrawler
      a911, а ты крышка
    3. Future
      a911, братишка спасибо
  17. OlegBekker
    Я бы заголовок поменял, набив запрещен
     
    1. OlegBrawler
    2. STEALYOURBRAIN Topic starter
      OlegBekker, это не важно ) как вам скрипт дядя олег ?
  18. Растение
    Растение Aug 19, 2023 27,785 Sep 26, 2021
    А это только для одного раздела работает? Не для всех?
     
    1. k1erry
  19. Растение
    Растение Aug 19, 2023 27,785 Sep 26, 2021
    А зачем если 2/3 форума с АУ сидит.
     
  20. STEALYOURBRAIN
    Добавляет снег на форум, а также маркет
    Ставим расширение Tampermonkey (кликабельно)
    Удаляем стандартный текст, вставляем мой.
    JS
    // ==UserScript==
    // @name Снег на Форум + Маркет // 2023 -2024
    // @author stealyourbrain
    // @match https://zelenka.guru/*
    // @match https://lzt.market/*
    // ==/UserScript==

    const animeScript = document.createElement('script');
    animeScript.src = 'https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js';
    document.head.appendChild(animeScript);

    animeScript.onload = function () {
    (function () {
    'use strict';

    const snowflakes = [];

    function createSnowflake() {
    const snowflake = document.createElement('div');
    snowflake.innerHTML = '❄';
    snowflake.style.position = 'fixed';
    snowflake.style.color = '#fff';
    snowflake.style.pointerEvents = 'none';
    snowflake.style.fontSize = Math.random() * 20 + 'px';
    snowflake.style.top = '-50px';
    snowflake.style.left = Math.random() * window.innerWidth + 'px';
    document.body.appendChild(snowflake);
    snowflakes.push(snowflake);

    anime({
    targets: snowflake,
    translateY: '100vh',
    translateX: Math.random() * 200 - 100,
    rotate: Math.random() * 360,
    duration: 2000 + Math.random() * 3000,
    easing: 'linear',
    complete: function () {
    document.body.removeChild(snowflake);
    snowflakes.splice(snowflakes.indexOf(snowflake), 1);
    createSnowflake();
    }
    });
    }

    function createSnowfall() {
    for (let i = 0; i < 30; i++) {
    createSnowflake();
    }
    }

    createSnowfall();
    })();
    };
     
Loading...
Top