NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Admin Colour Changes // @namespace Admin Colour Changes // @version 1.0 // @include http://imgur.com/adm/* // @include https://imgur.com/adm/* // @run-at document-end // @grant Nothing! // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle("#content .button-medium {color: #f8f8f8; background-color: #2b2b2b;"); addGlobalStyle("#content .button-medium:hover {background-color: #444;");