Created
December 2, 2011 11:18
-
-
Save champierre/1422854 to your computer and use it in GitHub Desktop.
Fill out login info for the library reservation system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @title Library Auto Login | |
| // @description Fill out login info for the library reservation system | |
| // @namespace http://blog.champierre.com | |
| // @include https://anylibrary.url/clis/entry <== REPLACE THIS | |
| // ==/UserScript== | |
| document.getElementsByName('UID')[0].value = UID; <== REPLACE THIS | |
| document.getElementsByName('PASS')[0].value = PASS; <== REPLACE THIS | |
| document.getElementsByName('CONTACT')[0].childNodes[3].selected = true; | |
| document.getElementsByName('LCOD')[0].childNodes[4].selected = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment