Auto AWS SSO CLI - Authorize Device

Automatically presses the "Confirm and continue" button

2024/04/15のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Auto AWS SSO CLI - Authorize Device
// @namespace   https://greatest.deepsurf.us/users/1009418
// @match       https://device.sso.*.amazonaws.com/?user_code=*
// @grant       none
// @version     1.0
// @author      Bernd VanSkiver
// @description Automatically presses the "Confirm and continue" button
// ==/UserScript==

window.onload = function() {
  document.getElementById('cli_verification_btn').click()
}