StreamCraft HBeira Cleaner

Remove a inundação das mensagens de curtidas ao apresentador.

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         StreamCraft HBeira Cleaner
// @namespace    https://greasyfork.org/en/scripts/371572-streamcraft-hbeira-style
// @version      1.0
// @description  Remove a inundação das mensagens de curtidas ao apresentador.
// @author       HBeira
// @include      http://www.streamcraft.com/*
// @include      http://streamcraft.com/*
// ==/UserScript==

var intervalo = setInterval(aplicarHBeiraCleaner, 500);
var cont = 0

function aplicarHBeiraCleaner(){
    var list = document.getElementsByClassName("z-html");
    if (/curtidas para o apresentador!/.test(list[cont].innerHTML)) {
        list[cont].parentNode.removeChild(list[cont]);

    if (cont > 0){ cont--; }

    }else{
        cont++;
    }
}