Remove snow codeforces

Remove snow effect on Codeforces

目前为 2023-12-22 提交的版本。查看 最新版本

// ==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;
        }
    `);
})();