カスタムの新しいタブ用の単純な google-chrome-extension を作成しようとしました。
私はそれを行うために2つのファイルを使用しました:
マニフェスト.json:
{
"name": "focus",
"version": "0.2",
"chrome_url_overrides": {
"newtab": "new.html"
},
"manifest_version": 2
}
new.html
<!DOCTYPE html>
<html>
<head>
<script>
function setFocus()
{
document.getElementById("fname").focus();
}
</script>
</head>
<body onload="setFocus()">
<form>
Search: <input type="text" id="fname" size="30"><br>
</form>
</body>
</html>
これらのファイルを chrome-extension としてインストールした後、新しいタブを開きます。動作しますが、フォーカスはアドレスバー (オムニボックス) にあり、検索テキストボックスにはありません。
検索テキストボックスにフォーカスを設定するにはどうすればよいですか?
ありがとう