GDocs form field focus

Places the cursor in the first text field on a Google Docs form. Useful if you use the form in combination with a barcode scanner for example.

2014/09/29のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name       GDocs form field focus
// @description Places the cursor in the first text field on a Google Docs form. Useful if you use the form in combination with a barcode scanner for example.
// @version 0.2
// @match      https://docs.google.com/*/viewform*
// @namespace https://gf.zukizuki.org/users/5660
// ==/UserScript==

document.querySelector("input[type=text]").focus();