Non display rating on Codeforces

Hide Rating related info on Codeforces

Stan na 17-01-2019. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Non display rating on Codeforces
// @name:ja      Codeforces の Rating 関連情報を非表示にする UserScript
// @namespace    https://greasyfork.org/ja/scripts/376735-non-display-rating-on-codeforces/
// @version      0.9
// @description:en Hide Rating related info on Codeforces
// @description:ja Codeforces でレーティング関連の情報やリンクを非表示にします
// @author       Yoshinari Takaoka
// @match        https://codeforces.com/
// @match        https://codeforces.com/top
// @match        https://codeforces.com/groups
// @match        https://codeforces.com/calendar
// @match        https://codeforces.com/profile/*
// @match        https://codeforces.com/blog/entry/*
// @match        https://codeforces.com/settings/*
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @grant        none
// @description Hide Rating related info on Codeforces
// ==/UserScript==

(function() {
    'use strict';
    var $ = window.jQuery;
    $(".personal-sidebar > div:eq(1) > ul:eq(0)").hide();
    $("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();
    $("div.main-info > h1:eq(0) > a:eq(0)").removeAttr("class").removeAttr("title");
    $("div.user-rank").hide();
})();