Від
// ==UserScript==
// @name Non display rating on Codeforces
// @name:ja Codeforces の Rating 関連情報を非表示にする UserScript
// @namespace http://www.mumumu.org/
// @version 0.1
// @description:en Hide Rating related info on Codeforces
// @description:ja Codeforces でレーティング関連の情報やリンクを非表示にします
// @author Yoshinari Takaoka
// @match https://codeforces.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
var $ = window.jQuery;
$(".personal-sidebar > div:eq(1) > ul:eq(0)").remove();
$("div.info > ul:eq(0) > li:eq(0)").hide();
$("div.info > ul:eq(0) > li:eq(1)").hide();
$("div.info > ul:eq(0) > li:eq(2)").hide();
$("div#placeholder").hide();
$("a[href='/ratings']").hide();
})();