quietness

removes noise from the forum at fasttech.com

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

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