Skip to content

Instantly share code, notes, and snippets.

@zanloy
Last active September 2, 2021 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zanloy/8535ea1fe6921b31311bdd4b92f9d536 to your computer and use it in GitHub Desktop.
Save zanloy/8535ea1fe6921b31311bdd4b92f9d536 to your computer and use it in GitHub Desktop.
A GM Script To Select "Amazon WebGov Cloud"
// ==UserScript==
// @name GotoGovCloud
// @version 1
// @grant none
// @include https://prod.adfs.federation.va.gov/adfs/ls/idpinitiatedsignon.aspx
// @require https://code.jquery.com/jquery-latest.min.js
// ==/UserScript==
(function() {
$('#idp_OtherRpRadioButton')[0].checked = true;
onClickOtherRPButton();
$('#idp_RelyingPartyDropDownList option[value="3d682b83-c219-e911-80f5-00155d61e014"]').prop('selected', true);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment