The Student Room (TSR) Popup Blocker

Gets rid of the sign up form blocking the page.

// ==UserScript==
// @name         The Student Room (TSR) Popup Blocker
// @namespace    http://tampermonkey.net/
// @version      2025-09-11.2
// @description  Gets rid of the sign up form blocking the page.
// @author       Doomnik
// @match        https://www.thestudentroom.co.uk
// @icon         https://www.google.com/s2/favicons?sz=64&domain=thestudentroom.co.uk
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const dialog = document.querySelector('.MUIDialog-root');
    if (!dialog) return;
    document.removeChild(dialog);
    document.querySelector('body').style.overflow = 'auto';
})();