您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
the only tag is rating
// ==UserScript== // @name rating only // @namespace http://tampermonkey.net/ // @version 6.9 // @description the only tag is rating // @author tuwuna // @include https://codeforces.com/contest/* // @include https://codeforces.com/problemset/* // @grant none // ==/UserScript== (function() { 'use strict'; if (!document.getElementsByClassName('verdict-accepted').length) Array.from(document.getElementsByClassName('roundbox')).map(e => [e, Array.from(e.children).find(c => c.classList.contains('tag-box'))]).filter(p => p[1] && p[1].title != 'Difficulty' && p[1].title != 'Сложность').forEach(p => p[0].remove()) })();