AtCoderUnratedButtonDisabler

Disables the "Unrated Entry" button on AtCoder contest pages.

  1. // ==UserScript==
  2. // @name AtCoderUnratedButtonDisabler
  3. // @namespace https://github.com/tagokoro
  4. // @version 1.0
  5. // @description Disables the "Unrated Entry" button on AtCoder contest pages.
  6. // @match https://atcoder.jp/contests/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function () {
  11. 'use strict';
  12.  
  13. const buttons = document.querySelectorAll('button');
  14. buttons.forEach(btn => {
  15. if (btn.textContent === 'Unrated参加登録') {
  16. btn.disabled = true;
  17. btn.textContent = '現在ご利用いただけません';
  18. }
  19. });
  20. })();