Non display rating on Codeforces

Hide Rating related info on Codeforces

目前為 2019-01-15 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Non display rating on Codeforces
// @name:ja      Codeforces の Rating 関連情報を非表示にする UserScript
// @namespace    https://gf.qytechs.cn/ja/scripts/376735-non-display-rating-on-codeforces/
// @version      0.2
// @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
// @description Hide Rating related info on Codeforces
// ==/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();
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址