Skip to content

Instantly share code, notes, and snippets.

@champierre
Created August 9, 2011 04:28
Show Gist options
  • Select an option

  • Save champierre/1133414 to your computer and use it in GitHub Desktop.

Select an option

Save champierre/1133414 to your computer and use it in GitHub Desktop.
// ==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