Clear Wall

Clears the wall - https://kat.cr/ideabox/show/ability-to-clean-wall/

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        Clear Wall
// @namespace   PXgamer
// @description Clears the wall - https://kat.cr/ideabox/show/ability-to-clean-wall/
// @include     *kat.cr/user/*
// @version     1
// @grant       none
// ==/UserScript==

$('div.buttonsline').append(' <a class="siteButton bigButton redButton" id="clearWall"><span>clear wall</span> <span class="ka ka-delete ka16 ka-red"></span></a> <style> a#clearWall span.ka-red { height: 12px !important; background: none !important;  text-shadow: none !important;} </style>');

$(document).delegate(function() {
  $('[href^"javascript: DeleteComment"]').each (function() {
    $(this).click();
  });
});