Greasy Fork

Greasy Fork is available in English.

Chess.com Add GM Tag

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

当前为 2023-06-27 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);

})();