Greasy Fork is available in English.

Remove background highlighting of Noob-club backer comments

Disables the highlighting of backer comments on the Noob-club forum

// ==UserScript==
// @name     Remove background highlighting of Noob-club backer comments
// @description     Disables the highlighting of backer comments on the Noob-club forum
// @version  20240323.1
// @license MIT
// @match    https://www.noob-club.ru/index.php?topic=*
// @namespace noob-club
// ==/UserScript==

let elements = document.querySelectorAll('div.i_am_backer');
elements.forEach((element) => {
    element.removeAttribute("style");
});