Greasy Fork is available in English.
Данное расширение удаляет информацию об розыгрыше
// ==UserScript==
// @name LZT no info rozigrush naxuy
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Данное расширение удаляет информацию об розыгрыше
// @author ChatGPT , aff
// @match *https://zelenka.guru/*
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var targetElement = document.querySelector('div.messageInfo > div.messageContent > article > div > div.new-raffle-info.mn-15-0-0');
if (targetElement) {
targetElement.parentNode.removeChild(targetElement);
}
})();