Skip to content

Instantly share code, notes, and snippets.

@cherenkov
Created October 28, 2009 20:47
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 cherenkov/220814 to your computer and use it in GitHub Desktop.
Save cherenkov/220814 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name kosho.or.jp auto-focus
// @namespace http://d.hatena.ne.jp/Cherenkov/
// @include http://www.kosho.or.jp/public/book/*
// @version 0.0.2
// ==/UserScript==
(function(){
window.addEventListener("keydown",function(){
document.querySelector('[name="p_shomei"]').focus();
},false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment