Greasy Fork is available in English.

Codeforces の Rating 関連情報を非表示にする UserScript

Codeforces でレーティング関連の情報やリンクを非表示にします

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @name Non display rating on Codeforces
  3. // @name:ja Codeforces の Rating 関連情報を非表示にする UserScript
  4. // @namespace https://greatest.deepsurf.us/ja/scripts/376735-non-display-rating-on-codeforces/
  5. // @version 0.91
  6. // @description:en Hide Rating related info on Codeforces
  7. // @description:ja Codeforces でレーティング関連の情報やリンクを非表示にします
  8. // @author Yoshinari Takaoka
  9. // @match https://codeforces.com/
  10. // @match https://codeforces.com/top
  11. // @match https://codeforces.com/groups
  12. // @match https://codeforces.com/calendar
  13. // @match https://codeforces.com/profile/*
  14. // @match https://codeforces.com/blog/entry/*
  15. // @match https://codeforces.com/settings/*
  16. // @match https://codeforces.com/contestRegistrants/*
  17. // @match https://codeforces.com/contestRegistration/*
  18. // @require https://code.jquery.com/jquery-3.3.1.min.js
  19. // @grant none
  20. // @description Hide Rating related info on Codeforces
  21. // ==/UserScript==
  22.  
  23. (function() {
  24. 'use strict';
  25. var $ = window.jQuery;
  26. $(".personal-sidebar > div:eq(1) > ul:eq(0)").hide();
  27. $("div.info > ul:eq(0) > li:eq(0)").hide();
  28. $("div.info > ul:eq(0) > li:eq(1)").hide();
  29. $("div.info > ul:eq(0) > li:eq(2)").hide();
  30. $("div#placeholder").hide();
  31. $("a[href='/ratings']").hide();
  32. $("div.main-info > h1:eq(0) > a:eq(0)").removeAttr("class").removeAttr("title");
  33. $("div.user-rank").hide();
  34. })();