CF Hide Standings

For ICPC training, hide contest status and standings

  1. // ==UserScript==
  2. // @name CF Hide Standings
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description For ICPC training, hide contest status and standings
  6. // @author SanguineChameleon
  7. // @match https://codeforces.com/*/standings*
  8. // @match https://codeforces.com/*/status*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=codeforces.com
  10. // @grant GM_addStyle
  11. // @run-at document-start
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. GM_addStyle(`
  17. a[title='Participants solved the problem'] {
  18. display: none !important;
  19. }
  20. a[title='Количество решивших задачу'] {
  21. display: none !important;
  22. }
  23. table[class='standings'] {
  24. display: none !important;
  25. }
  26. table[class='status-frame-datatable'] {
  27. display: none !important;
  28. }
  29. `)
  30. })();