Automatically presses the "Allow access" button and closes the window
// ==UserScript==
// @name Auto AWS SSO CLI - Login
// @namespace https://greasyfork.org/users/1009418
// @match https://*.awsapps.com/start/*
// @grant none
// @version 1.0
// @author Bernd VanSkiver
// @description Automatically presses the "Allow access" button and closes the window
// ==/UserScript==
window.onload = function() {
setTimeout(() => {
const loginButton = document.getElementById('cli_login_button');
if (loginButton) {
loginButton.click();
setInterval(() => {
window.close();
}, 1000);
}
}, 1000);
}