Restore dotted line focus indicator
// ==UserScript== // @name IServ focusable links // @namespace https://www.mzimmer.net/ // @version 1.0.0 // @description Restore dotted line focus indicator // @author Michel Zimmer <[email protected]> (Michel Zimmer) // @match https://maxe-del.de/idesk/* // @grant none // ==/UserScript== (function() { 'use strict'; var node = document.createElement('style'); node.innerHTML = ':focus { outline: thin dotted !important; }'; document.body.appendChild(node); })();