Chess.com Add GM Tag

Add GM tags to all your opponents in chess.com!

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Chess.com Add GM Tag
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Add GM tags to all your opponents in chess.com!
// @author       Anonymous
// @include      https://www.chess.com/*
// @grant        none
// @run-at       document-body
// ==/UserScript==

(function() {
    'use strict';

function addGMTag() {
    const usernameElements = document.querySelectorAll('.user-username-component.user-username-white.user-username-link.user-tagline-username');

    // Create the element to insert
    const newElement = document.createElement('a');
    newElement.href = 'https://www.chess.com/members/titled-players';
    newElement.target = '_blank';
    newElement.className = 'user-chess-title-component';
    newElement.textContent = 'GM';

    // Insert the new element before each username element
    usernameElements.forEach(usernameElement => {
        // Check if the new element is already present
        const existingElement = usernameElement.previousElementSibling;
        if (existingElement && existingElement.classList.contains('user-chess-title-component')) {
            return; // Skip this iteration if the element is already present
        }

        // Insert the new element before the username element
        usernameElement.parentNode.insertBefore(newElement.cloneNode(true), usernameElement);
    });
}

setInterval(() => {
    addGMTag()
}, 100);

})();