Excite 翻訳のページでテキストエリアにフォーカスを当てる Greasemonkey スクリプト

November 26, 2008category: Greasemonkey JavaScript 

Excite 翻訳のページでテキストエリアにフォーカスを当てる Greasemonkey スクリプト。

ExciteTranslationFocusTextField.user.js

// ==UserScript==
// @name           Excite Translation Focus TextField
// @namespace      http://bitmap.dyndns.org/
// @description    Focus TextField at Excite translation page
// @include        http://www.excite.co.jp/world/
// ==/UserScript==
(function() {
  function initialize() {
    document.getElementsByTagName("textarea")[0].focus();
  }
  window.addEventListener("load", initialize, true);
})();

comments (0)このエントリーを含むはてなブックマークはてなブックマーク - Excite 翻訳のページでテキストエリアにフォーカスを当てる Greasemonkey スクリプト

comments