Remove snow effect on Codeforces
当前为
// ==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;
}
`);
})();