NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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); })();