NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Verbandsgebäude verstecken // @namespace https://openuserjs.org/users/Fendo // @version 1.0 // @description Versteckt alle Verbandsgebäude mit dem Tag [V] // @copyright 2017, Fendo (https://openuserjs.org/users/Fendo) // @license CC-BY-NC-SA-4.0; https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode // @license GPL-3.0+; http://www.gnu.org/licenses/gpl-3.0.txt // @updateURL https://openuserjs.org/meta/Fendo/Verbandsgebäude_verstecken.meta.js // @match *://www.leitstellenspiel.de/* // ==/UserScript== (function (){ $("[title^='[V]']").css("display", "none!important"); })();