Greasy Fork is available in English.
hello
// ==UserScript==
// @name [BETA] Zelenka Fire
// @namespace http://tampermonkey.net/
// @version 0.1
// @description hello
// @author Unito
// @match *.zelenka.guru/*
// @match *.lzt.market/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru
// @grant none
// @license MIT
// ==/UserScript==
const account_username = $(".accountUsername span").text()
var rainbow_nick = 'background-image: url(https://media.tenor.com/AnYzIUOQbO0AAAAC/pride-rainbow.gif); -webkit-background-clip: text; -webkit-text-fill-color: transparent;'
function updNicks () {
Array.from($(".username span")).forEach((item)=>{
item = $(item)
if(item.text() == account_username){
item.removeAttr('class')
item.attr('style', rainbow_nick)
}
})
}
updNicks()
(document).ready(()=>{
updNicks()
})