Change Like Counter Icon

Заменить иконку

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Change Like Counter Icon
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Заменить иконку
// @author       Ваше имя
// @grant        GM_addStyle
// @license MIT
// @match        https://lolz.live/*
// @match        https://lolz.guru/*
// @match        https://zelenka.guru/*
// ==/UserScript==

(function() {
    'use strict';

    // Новый URL для изображения
    const newLogoUrl = 'https://lolz.live/styles/brand/download/logos/LolzTeam-Logo-Green.svg';

    // CSS для изменения логотипа с использованием !important
    const css = `
        #lzt-logo {
            background-image: url('${newLogoUrl}') !important;
        }
    `;

    // Добавляем новый стиль на страницу
    GM_addStyle(css);
})();