Codeforces Bold Emphasizer

Emphasize the bold text in the problem statement.

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

QingJ © 2025

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