Greasy Fork is available in English.
Подкрашивание комментов
// ==UserScript==// @name Tabun Self Color Comments// @version 2020.04.28// @description Подкрашивание комментов// @include http*://tabun.everypony.ru/*// @author Rainbow-Spike// @namespace https://greasyfork.org/users/7568// @homepage https://greasyfork.org/ru/users/7568-dr-yukon// @icon https://www.google.com/s2/favicons?domain=tabun.everypony.ru// @grant none// ==/UserScript==function gap ( ) {var auth = document.querySelectorAll ( '.comment-wrapper' ), // комментыname = document.querySelector ( '#dropdown-user .username:last-of-type' ).innerHTML, // своё имяname2,color = "background-color: #FFFFEE;";for ( var i in auth ) {name2 = auth [ i ].querySelector ( '.comment-author a:nth-of-type(2)' ).innerHTML; // имя комментатораif ( name == name2 ) {auth [ i ].querySelector ( '.comment-content' ).style = auth [ i ].querySelector ( '.comment-info' ).style = color;}}}setTimeout ( gap, 0 );