Skip to content

Instantly share code, notes, and snippets.

@kolja
Created August 5, 2016 13:25
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 kolja/23e73cb4eacbc4548cb43eea48d1d48e to your computer and use it in GitHub Desktop.
Save kolja/23e73cb4eacbc4548cb43eea48d1d48e to your computer and use it in GitHub Desktop.
aws login
// ==UserScript==
// @name aws-login
// @source
// @downloadURL
// @version 0.1.0
// @description login to AWS
// @author kolja
// @include *://signin.aws.amazon.com/saml
// @run-at document-idle
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
var $ = window.jQuery;
$(window).load(function() {
$("#arn:aws:iam::324391573247:role/Shibboleth-PowerUser").click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment