asameshimae / Hide the Chat

// ==UserScript==
// @name         Hide the Chat
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.library.manchester.ac.uk/
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    window.addEventListener ("load", _=>document.querySelectorAll('.lcs_slide_out').forEach(e=>e.remove()), false)
    document.querySelectorAll('.lcs_slide_out').forEach(e=>e.remove())
})();