auto click AtCoder clock once on page load

to hide the clock

  1. // ==UserScript==
  2. // @name auto click AtCoder clock once on page load
  3. // @namespace https://github.com/zica87/self-made-userscipts
  4. // @version 1.0
  5. // @description to hide the clock
  6. // @author zica
  7. // @match https://atcoder.jp/contests/*
  8. // @grant none
  9. // @license GPL-3.0
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. "use strict";
  14.  
  15. const timer = document.getElementById("fixed-server-timer");
  16. timer.click();
  17. })();