Clear Wall

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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();
  });
});