codeforces-hide-tags

Hide "Problem tags" on Codeforces, a serious spoiler.

// ==UserScript==
// @name         codeforces-hide-tags
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hide "Problem tags" on Codeforces, a serious spoiler.
// @author       yoshrc
// @match        https://codeforces.com/contest/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    for (const div of document.querySelectorAll('div.caption.titled')) {
        if (div.innerHTML.includes('Problem tags')) {
            div.parentElement.setAttribute('style', 'display: none');
        }
    }
})();

QingJ © 2025

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