Emphasize the bold text in the problem statement.
// ==UserScript==
// @name Codeforces Bold Emphasizer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Emphasize the bold text in the problem statement.
// @author kuma807
// @match https://codeforces.com/contest/*/problem/*
// @icon https://www.google.com/s2/favicons?domain=codeforces.com
// @grant none
// ==/UserScript==
var bold = document.getElementsByClassName("tex-font-style-bf");
for (var i = 0; i < bold.length; i++) {
bold[i].style.color = "#FF0000";
}