Greasy Fork is available in English.

AtCoderBackGroundColorizer

Colorize background of AtCoder with your favorite color.

  1. // ==UserScript==
  2. // @name AtCoderBackGroundColorizer
  3. // @namespace https://greatest.deepsurf.us/ja/scripts/377844
  4. // @version 1.1
  5. // @description Colorize background of AtCoder with your favorite color.
  6. // @author Mister
  7. // @match https://atcoder.jp/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // -------------->8---------------------------->8--------------
  15.  
  16. // 色の指定
  17. var paintingColor = "#E0F8E0";
  18.  
  19. // --------------8<----------------------------8<--------------
  20.  
  21. // 色を変える
  22. var elm = document.getElementById('main-div');
  23. elm.style.background = paintingColor;
  24. })();