Заменяем лайки, сообщения и хайды на новогодний аналог
// ==UserScript==
// @license MIT
// @name Новогоднее настроение
// @namespace QIYANA_NewYear_Scripts
// @version 0.1
// @description Заменяем лайки, сообщения и хайды на новогодний аналог
// @author QIYANA
// @match *://*.zelenka.guru/*
// @match *://*.lolz.live/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.textContent = `
.like2Icon {
font-family: initial !important;
background-image: none !important;
display: inline-block !important;
}
.like2Icon::before {
content: "⛄" !important;
font-size: 16px !important;
background: none !important;
}
.postCounterIcon {
font-family: initial !important;
background-image: none !important;
display: inline-block !important;
}
.postCounterIcon::before {
content: "📝" !important;
font-size: 16px !important;
background: none !important;
}
.hiddenReplyIcon {
font-family: initial !important;
background-image: none !important;
display: inline-block !important;
}
.hiddenReplyIcon::before {
content: "😌" !important;
font-size: 16px !important;
background: none !important;
}
`;
document.documentElement.appendChild(style);
})();