Disables the "Unrated Entry" button on AtCoder contest pages.
当前为
// ==UserScript==
// @name AtCoderUnratedButtonDisabler
// @namespace https://github.com/tagokoro
// @version 1.0
// @description Disables the "Unrated Entry" button on AtCoder contest pages.
// @match https://atcoder.jp/contests/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
const buttons = document.querySelectorAll('button');
buttons.forEach(btn => {
if (btn.textContent === 'Unrated参加登録') {
btn.disabled = true;
btn.textContent = '現在ご利用いただけません';
}
});
})();