您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 = '現在ご利用いただけません'; } }); })();