NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @author stranac // @name AoC always animated // @description Always animate the tree on Advent of Code // @include http://adventofcode.com/ // @version 1.0 // @grant none // ==/UserScript== // tree-beckon is the class in charge of animation document.getElementsByClassName('tree')[0].className = 'tree tree-beckon';