Skip to content

Instantly share code, notes, and snippets.

@ymorimo
Created December 8, 2009 04:27
Show Gist options
  • Save ymorimo/251401 to your computer and use it in GitHub Desktop.
Save ymorimo/251401 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name jnb_branch_001
// @namespace http://github.com/ymorimo
// @description Autofill JNB's branch number 001 on its login form
// @include https://www.japannetbank.co.jp/login.html
// ==/UserScript==
window.addEventListener('load', function() {
document.forms.wrappedJSObject.HOST.TenNo.value = '001';
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment