NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name apiservices remove maps side // @version 0.1 // @description remove maps // @include http://www.apiservices.biz/forum/* // @copyright 2015+, lolo888 // ==/UserScript== // element.parentNode.removeChild(element.childNodes[1]); firstChild var element = document.getElementById('aside'); if (element) { element.removeChild(element.childNodes[1]); element.removeChild(element.childNodes[2]); }