Greasy Fork is available in English.

Bye-Bye KAT Ads

Removes ads from KAT

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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
// ==/UserScript==


$(window).load(function(){
  $('div.news:nth-child(2) > div:nth-child(3)').remove();
  $('#main_content_section > center:nth-child(1)').remove();
});