NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Lsf Fix // @namespace http://lsf.ovgu.de/ // @version 1.0 // @description Fixing the Lsf for you // @author Janek // @match https://lsf.ovgu.de/* // @license MIT // @copyright 2018, janekx21 (https://openuserjs.org//users/janekx21) // @grant none // ==/UserScript== (function() { 'use strict'; setTimeout(function () { var images = Array.prototype.slice.call((document).getElementsByTagName('img')); images.filter(x=>x.src == "https://lsf.ovgu.de/QIS/images/next.svg").forEach(x=>x.width=12); images.filter(x=>x.src == "https://lsf.ovgu.de/QIS/images//calendar_go.svg").forEach(x=>x.width=12); }, 0); })();