Установка TamperMonkey на браузеры с движком Chromium, а так же Firefox, Opera Chrome: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo Firefox: https://addons.mozilla.org/ru/firefox/addon/tampermonkey/ https://addons.opera.com/en/extensions/details/tampermonkey-beta/ Opera: https://addons.opera.com/en/extensions/details/tampermonkey-beta/ // ==UserScript== // @name Замените значок «Симпатия» на «Смайлик» // @version 0.2 // @description Replace the like icon with a custom smiley on a webpage // @author equilpres // @match https://lolz.live/* // @match https://zelenka.guru/* // @match https://lolz.guru/* // @match https://lzt.market/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru // @grant none // @run-at document-end // ==/UserScript== function replaceLikeIcons() { const likeElements = document.querySelectorAll('.likeCounterIcon'); for (const element of likeElements) { element.style.backgroundImage = 'url("https://lolz.live/styles/default/xenforo/smilies/kakashka.png")'; // Замените URL на вашего смайлика element.style.backgroundSize = 'contain'; element.style.backgroundRepeat = 'no-repeat'; element.innerHTML = ''; } } setInterval(replaceLikeIcons, 10); JS // ==UserScript== // @name Замените значок «Симпатия» на «Смайлик» // @version 0.2 // @description Replace the like icon with a custom smiley on a webpage // @author equilpres // @match https://lolz.live/* // @match https://zelenka.guru/* // @match https://lolz.guru/* // @match https://lzt.market/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru // @grant none // @run-at document-end // ==/UserScript== function replaceLikeIcons() { const likeElements = document.querySelectorAll('.likeCounterIcon'); for (const element of likeElements) { element.style.backgroundImage = 'url("https://lolz.live/styles/default/xenforo/smilies/kakashka.png")'; // Замените URL на вашего смайлика element.style.backgroundSize = 'contain'; element.style.backgroundRepeat = 'no-repeat'; element.innerHTML = ''; } } setInterval(replaceLikeIcons, 10);