Greasy Fork is available in English.

【聊天室自动变色】

炫酷的,让你每说一句话就换个随机的颜色

// ==UserScript==
// @name         【聊天室自动变色】
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  炫酷的,让你每说一句话就换个随机的颜色
// @author       FyraTree
// @match        *://hack.chat/?*
// @match        *://tanchat.fun/?*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      WTFPL
// ==/UserScript==

(function() {
    'use strict';

    var send_ = send
    send = function (x) {
        send_({ cmd: 'changecolor', color: Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0") })
        send_(x)
    }
})();