您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide Rating related info on Codeforces
当前为
- // ==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.5
- // @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/profile/*
- // @match https://codeforces.com/blog/entry/*
- // @match https://codeforces.com/settings/*
- // @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或关注我们的公众号极客氢云获取最新地址