Chess.com - Tier System

Replaces ranks with colored tiers!

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Chess.com - Tier System
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  Replaces ranks with colored tiers!
// @author       SaberSpeed77
// @match        https://www.chess.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chess.com
// @grant        none
// @license      MIT
// ==/UserScript==

var observer = new MutationObserver((mutations) => {
    var ratings = document.querySelectorAll(".user-tagline-rating, .user-rating, .rating-score-rating, .cc-user-rating-white, .cc-user-rating-black, .cc-user-rating-default");
    ratings.forEach(r => {
        var text = parseInt(r.textContent.substring(r.textContent.indexOf("(") + 1, r.textContent.indexOf(")")));
        r.style.fontSize = "1px";
        r.style.width = "20px";
        r.style.height = "10px";

        if (text < 800) {
            r.style.color = "#998671";
            r.style.backgroundColor = "#998671";
        } else if (text <= 1100) {
            r.style.color = "#828181";
            r.style.backgroundColor = "#828181";
        } else if (text <= 1300) {
            r.style.color = "#bdbb53";
            r.style.backgroundColor = "#bdbb53";
        } else if (text <= 1600) {
            r.style.color = "#538bbd";
            r.style.backgroundColor = "#538bbd";
        } else if (text <= 2000) {
            r.style.color = "#5ed168";
            r.style.backgroundColor = "#5ed168";
        } else if (text <= 2300) {
            r.style.color = "#b85dc2";
            r.style.backgroundColor = "#b85dc2";
        } else {
            r.style.color = "#d15e64";
            r.style.backgroundColor = "#d15e64";
        }
    })

    var chatroom = document.querySelectorAll(".game-start-message-component, .game-over-message-component");
    chatroom.forEach(r => {
        r.style.visibility = "hidden";
    });
});

  observer.observe(document, {
    childList: true,
    subtree: true
  });