NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name sorozatjunkie ad remover // @namespace http://sorozatjunkie.hu // @description This script removes the annoying background ad from sorozatjunkie.hu // @include /^http(s)?:\/\/(www\.)?sorozatjunkie.hu(\/.*)*$/ // @version 0.1 // @icon http://hipponax.uw.hu/greasemonkey/sorozatjunkie/icon.png // @grant none // @copyright 2015, HiPPoNaX // @oujs:author HiPPoNaX // @license GNU General Public License, version 3; http://opensource.org/licenses/GPL-3.0 // ==/UserScript== /* remove background picture */ var elmBody = document.getElementsByTagName("body"); elmBody[0].style.background = "#FFF"; /* remove unnecessary empty space on the top */ var elmFelulrebox = document.getElementById("felulrebox"); elmFelulrebox.parentNode.removeChild(elmFelulrebox); var elmGiganagy = document.getElementById("giganagy"); elmGiganagy.style.margin = "0 auto"; /* remove ads */ var adElements = document.querySelectorAll ( "[src*='adverticum'], [onclick*=adverticum], [data*=adverticum], [id*=zone], [id*=gemius]" ); for (var i = 0; i < adElements.length; i++) { var elmAd = adElements[i]; elmAd.parentNode.removeChild(elmAd); }