Bucketsmith's blog

By Bucketsmith, history, 13 months ago, In English

pls someone fix this thx. i can't sleep and solve problems well now.

  • Vote: I like it
  • +145
  • Vote: I do not like it

| Write comment?
»
13 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by Bucketsmith (previous revision, new revision, compare).

»
13 months ago, # |
Rev. 2   Vote: I like it +32 Vote: I do not like it
// ==UserScript==
// @name         Fix CF ICPC Challenge Bar
// @version      0.1
// @author       hocky
// @match        https://codeforces.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=codeforces.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("a[href='/icpc2023'] img").css('height', '15px');
})();