Block the terms alert on LMSYS

Blocks the JS alert that pops up when you open the site

// ==UserScript==
// @name         Block the terms alert on LMSYS
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Blocks the JS alert that pops up when you open the site
// @author       bmpq
// @match        https://chat.lmsys.org/*
// @match        https://lmarena.ai/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Override the default alert function
    window.alert = function() {
        console.log("Blocked an alert: ", arguments);
    };

})();