NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name wikimapia google satellite shit remover // @license MIT // @namespace *.wikimapia.org // @include * // @version 1 // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // ==/UserScript== var remover = function () { $('span').each((i, s) => { if (/development/.test(s.innerHTML)) { $(s.offsetParent.offsetParent).css('background-color', ''); s.innerHTML = '' } }) } setInterval(remover, 1000);