NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GSMArena Ads Remover // @namespace GSMArenaAdsRemover // @version 1 // @description Remove Ads from GSM Arena // @include http://gsmarena.*/* // @include https://gsmarena.*/* // @include http://*.gsmarena.*/* // @include https://*.gsmarena.*/* // @include http://gsmarena.*/* // @include https://gsmarena.*/* // @include http://*.gsmarena.*/* // @include https://*.gsmarena.*/* // @grant metadata // @author CiliBi18 // @copyright 2017, LeFoulek // ==/UserScript== function goRemoveAds() { $.each($('body>span'), function(i,e){ if ($(e).find('header').html().length === 0) $(e).remove(); }) } $(function(){ console.clear(); setTimeout(goRemoveAds, 500); })