Remove snow codeforces

Remove snow effect on Codeforces

Verze ze dne 22. 12. 2023. Zobrazit nejnovější verzi.

// ==UserScript==
// @name         Remove snow codeforces
// @version      20231222.09.51
// @namespace    http://tampermonkey.net/
// @description  Remove snow effect on Codeforces
// @author       nullchilly
// @license      MIT
// @match        https://codeforces.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Add custom styles to remove the snow effect
    GM_addStyle(`
        body {
            background: url() !important;
        }
    `);
})();