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 input style // @description Uses the main site's CSS styles when viewing the input files // @include http://adventofcode.com/day/*/input // @version 1.0 // @grant none // ==/UserScript== var style = document.createElement('link'); style.rel = 'stylesheet'; style.type = 'text/css'; style.href = '/static/style.css?3'; document.head.appendChild(style);