Greasy Fork is available in English.

ilcorsaronero.info Highlighter

enter something useful

// ==UserScript==
// @name         ilcorsaronero.info Highlighter
// @namespace    https://ilcorsaronero.link
// @version      0.2
// @description  enter something useful
// @author       Michele
// @require      http://code.jquery.com/jquery-latest.min.js
// @match        https://ilcorsaronero.link/*
// @grant        GM_xmlhttpRequest
// ==/UserScript==

jQuery("tr[class^='odd'] :nth-child(6n)").each(function(k, v) {
    console.log($(v).text());
    if (isNaN($(v).text())) {
        $(v).parent().css("background-color", "black");
    } else if ($(v).text() < 100) {
        $(v).parent().css("background-color", "black");
    } else if ($(v).text() < 200) {
        $(v).parent().children().children().css("color", "black");
        $(v).parent().css("background-color", "gray");
    } else if ($(v).text() < 400) {
        $(v).parent().children().children().css("color", "black");
        $(v).parent().css("background-color", "yellow");
    } else {
        $(v).parent().children().children().css("color", "black");
        $(v).parent().css("background-color", "green");
    }
});