NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Make F-spexet Great Again // @namespace matzlarsson.se // @description Makes the UI of f-spexet.se look better. // @include http://f-spexet.se/* // @version 1 // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== $('.shadow').each(function(index, item){ $(this).removeClass('shadow'); }); $('.navbar-nav li.active a').each(function(index, item){ $(this).css('background-color', 'rgba(255, 255, 255, 0.2)').css('color', 'white'); });