Skip to content

Instantly share code, notes, and snippets.

@cwvh
Created January 23, 2014 00:02
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 cwvh/8570144 to your computer and use it in GitHub Desktop.
Save cwvh/8570144 to your computer and use it in GitHub Desktop.
drag-and-drop this into your chrome settings -> extensions page
// ==UserScript==
// @match https://webauth.arizona.edu/*
// ==/UserScript==
var username = 'fill me in',
password = 'fill me in';
document.getElementById('username').value = username;
document.getElementById('password').value = password;
HTMLFormElement.prototype.submit.call(document.getElementById('fm1'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment