// ==UserScript==
// @name Destiny Split
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description dgg split chat
// @author garych
// @match https://www.destiny.gg/bigscreen
// @grant none
// @downloadURL none
// ==/UserScript==
function replaceChat() {
var embeddedChat = ' ';
$("#chat-wrap").html(embeddedChat);
}
var replaceInterval = setInterval( function(){
if(!$("#chat-wrap #twitch-chat").length){
replaceChat();
console.log("replacing chat");
} else {
clearInterval(replaceInterval);
console.log("no longer replacing chat");
}
}, 50);