Remove snow codeforces

Remove snow effect on Codeforces

目前為 2023-12-22 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Remove snow codeforces
  3. // @version 20231222.09.51
  4. // @namespace http://tampermonkey.net/
  5. // @description Remove snow effect on Codeforces
  6. // @author nullchilly
  7. // @license MIT
  8. // @match https://codeforces.com/*
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Add custom styles to remove the snow effect
  16. GM_addStyle(`
  17. body {
  18. background: url() !important;
  19. }
  20. `);
  21. })();