Auto-closes the Roblox authenticator prompt
// ==UserScript==
// @name FUCKROBLOXPROTECTION
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @description Auto-closes the Roblox authenticator prompt
// @author dudeman
// @match https://www.roblox.com/*
// @license bob
// @grant none
// ==/UserScript==
(function() {
'use strict';
const observer = new MutationObserver(() => {
const authPrompt = document.querySelector('.modal-modern-security-prompt .modal-modern-header-button');
if (authPrompt) authPrompt.click();
});
observer.observe(document.body, { childList: true, subtree: true });
})();