Auto AWS SSO CLI - Close Window

Close the tab when successful AWS SSO CLI login

اعتبارا من 21-05-2021. شاهد أحدث إصدار.

// ==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==

setInterval(() => {
  // When the URL has changed to success, close the window
  if (location.href == "https://*.awsapps.com/start/user-consent/login-success.html") {
    window.close()
  }
}, 1000)