Google Chromeの「新しいタブ」から、ロゴと検索ボックスを消す



Chromeで新しいタブを開くと、

  • 大きなGoogleロゴ
  • 検索ボックス
  • 最近見たページ

が表示されます。1.と2.が目障りなので、削除するユーザースクリプトを書きました。
動きとしては#lgaと#fを削除するだけです。


Chrome 42.0.2311.90 m
Tampermonkey 3.10.84
で動作確認しました。

// ==UserScript==
// @name         新しいタブから検索ボックスを削除
// @namespace    http://your.homepage/
// @version      0.1
// @description  enter something useful
// @author       You
// @match        https://www.google.co.jp/_/chrome/newtab?espv=2&ie=UTF-8
// @grant        none
// ==/UserScript==

document.body.removeChild(document.getElementById('lga'));
document.body.removeChild(document.getElementById('f'));