Well.
I tried a bit of stress testing.
Code:
<html>
<script src="http://console.re/connector.js" data-channel="projeto-abcdefgh" id="consolerescript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
var a = 0
setInterval(lucLoader, 100);
function lucLoader () {
$.get( "[SOMEWEBSITE you're not afraid to spam] ", function( data ) {
$( "#luc" ).html( a++ );
if(a > 1000) { $( "#luc" ).html( data ); }
});
}
</script>
<div id="luc">
</div>
</html>
I didn't manage to crash my experimental browser in 20 minutes of testing.