Created
August 9, 2011 04:28
-
-
Save champierre/1133414 to your computer and use it in GitHub Desktop.
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 Chofu Library Auto Login | |
| // @description Fill out login info for chofu library reservation system | |
| // @namespace http://blog.champierre.com | |
| // @include https://www.lib.city.chofu.tokyo.jp/cgi-bin/entry | |
| // ==/UserScript== | |
| document.getElementsByName('UID')[0].value = '1234567-8' | |
| document.getElementsByName('PASS')[0].value = '1234' | |
| document.getElementsByName('CONTACT')[0].childNodes[0].selected = true | |
| document.getElementsByName('LCOD')[0].childNodes[0].selected = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment