Non display rating on Codeforces

Hide Rating related info on Codeforces

As of 2019-01-15. See the latest version.

  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.5
  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/profile/*
  13. // @match https://codeforces.com/blog/entry/*
  14. // @match https://codeforces.com/settings/*
  15. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
  16. // @grant none
  17. // @description Hide Rating related info on Codeforces
  18. // ==/UserScript==
  19.  
  20. (function() {
  21. 'use strict';
  22. var $ = window.jQuery;
  23. $(".personal-sidebar > div:eq(1) > ul:eq(0)").remove();
  24. $("div.info > ul:eq(0) > li:eq(0)").hide();
  25. $("div.info > ul:eq(0) > li:eq(1)").hide();
  26. $("div.info > ul:eq(0) > li:eq(2)").hide();
  27. $("div#placeholder").hide();
  28. $("a[href='/ratings']").hide();
  29. })();