quietness

removes noise from the forum at fasttech.com

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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        quietness
// @namespace   fasttechforumquiet
// @description removes noise from the forum at fasttech.com
// @include     https://www.fasttech.com/forums/*
// @version     1.01
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
// @grant       GM_getValue
// @grant       GM_setValue
// ==/UserScript==

var ignorelist = new Array('user1', 'user2', 'user3', 'user4', 'user5', 'user6');

function quietness() {
  window.setTimeout(function () {
    for (z in ignorelist) {
      $('.Nickname:contains(\'' + ignorelist[z] + '\')').each(function (i) {
        $(this).parent().parent().remove();
      }
      )
    }
  }, 1000);
}

window.onload = quietness;