Заменяет иконку кнопки лайка на кастомную моментально.
// ==UserScript==
// @name Замена иконки лайка на НГ варежку
// @version 1.2
// @description Заменяет иконку кнопки лайка на кастомную моментально.
// @namespace awaw
// @match https://lolz.live/*
// @match https://zelenka.guru/*
// @icon https://www.google.com/s2/favicons?domain=lolz.live
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const customIconURL = 'https://i.imgur.com/KzN4zHK.png'; // Ссылка на вашу иконку через Imgur
const style = `
.icon.like2Icon {
background-image: url("${customIconURL}") !important;
background-size: 16px 16px !important;
width: 16px !important;
height: 16px !important;
display: inline-block !important;
}
`;
const styleElement = document.createElement('style');
styleElement.textContent = style;
document.head.appendChild(styleElement);
})();