Remove dueling book chat

Simply removes the chat/statuses section on the dueling book main page.

// ==UserScript==
// @name     Remove dueling book chat
// @description Simply removes the chat/statuses section on the dueling book main page.
// @version  0.1
// @include https://www.duelingbook.com/
// @namespace https://greasyfork.org/users/814104
// ==/UserScript==

var chat = document.getElementById('statuses');
if (chat) {
    chat.parentNode.removeChild(chat);
}