quietness

removes noise from the forum at fasttech.com

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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