AtCoder Hide Virtual Standings Tab

Hide the "Virtual Standings" tab on the AtCoder task page.

2023-04-07 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

  1. // ==UserScript==
  2. // @name AtCoder Hide Virtual Standings Tab
  3. // @name:ja AtCoder Hide Virtual Standings Tab
  4. // @namespace https://github.com/xe-o
  5. // @version 0.1
  6. // @description Hide the "Virtual Standings" tab on the AtCoder task page.
  7. // @description:ja AtCoder問題ページの「バーチャル順位表」のタブを非表示にします。
  8. // @author XERO
  9. // @license MIT
  10. // @match https://atcoder.jp/contests/*/tasks/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. "use strict";
  16. var link = document.querySelector("a[href$='/standings/virtual']");
  17.  
  18. if (link) {
  19. link.parentElement.style.display = "none";
  20. }
  21. })();