This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name AWS VPN - Close Window | |
// @namespace Violentmonkey Scripts | |
// @match http://127.0.0.1:35001/ | |
// @grant window.close | |
// @version 1.0 | |
// @author Nicholas Hawkes | |
// @description Close the tab when successful AWS VPN is on | |
// @homepage https://gist.github.com/hawkesnc/ddfdb6f35ad23e8f4a00439bcaddaaa6 | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Auto AWS SSO CLI - Close Window | |
// @namespace Violentmonkey Scripts | |
// @match https://*.awsapps.com/start/user-consent/login-success.html | |
// @grant window.close | |
// @version 1.0 | |
// @author Nicholas Hawkes | |
// @description Close the tab when successful AWS SSO CLI login | |
// @homepage https://gist.github.com/hawkesnc/b710c3b7713b08d3a39959d4e06056f3 | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Auto AWS SSO CLI - Login | |
// @namespace Violentmonkey Scripts | |
// @match https://*.awsapps.com/start/user-consent/authorize.html?clientId=* | |
// @grant none | |
// @version 1.0 | |
// @author Nicholas Hawkes | |
// @description Automatically presses the "Sign in to AWS CLI" button | |
// @homepage https://gist.github.com/hawkesnc/ae9fc22fc5d17ac250f6376b0591161c | |
// ==/UserScript== |