AoPSmath / Hue rotate

// ==UserScript==
// @name         Hue rotate
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  change the colors of AoPS!
// @author       You
// @match        https://artofproblemsolving.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  // Your code here...
  var i = 0;
  setInterval(function () {
    document.body.style.filter = 'hue-rotate(' + (i++) + 'deg)';
  }, 3);
})();