// ==UserScript== // @name Bye-Bye KAT Ads // @namespace Keka_Umans // @description Removes ads from KAT // @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @include *katcr.co/* // @version 1.1 // @grant none // @downloadURL none // ==/UserScript== $(window).load(function(){ $('div.news:nth-child(2) > div:nth-child(3)').remove(); $('#main_content_section > center:nth-child(1)').remove(); });