« ドラマ「クローザー」と南部訛り Main Googleの左側メニューを消すGre... »

Googleの左側メニューを消すGreasemonkeyスクリプト

このところGoogleの検索結果で、何か幅が狭くなったりしているときがあるとは思っていたのだが、どうもこれで左側に表示されているメニューは、表示をアクセス毎にランダムに切り替えていたらしい。(→[追記]ランダムでなく、常時表示になった?)

もじら組MLでこの検索メニューを消せないかとの話題があったので、簡単なGreasemonkeyスクリプトを書いてみた。単にスタイルシートでleftnavを非表示にするだけですが。(もう少し凝ろうと思ったら「折りたたみボタン」とか付けるんですかね)。(→付けました…

リンク(左側メニューの評判とか)

RemoveGoogleLeftNav-0_1.user.js

// ==UserScript==
// @name           Remove Google LeftNav
// @namespace      http://mibai.tec.u-ryukyu.ac.jp/

// @description    Remove left navi column from google result.
// @include        http://www.google.co.jp/search*
// ==/UserScript==

// [2010/05/06] OSHIRO Naoki.

// 以下などを参考にしました。
// http://d.hatena.ne.jp/f96q/20100203/1265186427

//  CSSを編集するGreasemonkeyスクリプト - がむしゃらにコードを書き続けるブログ

(function() {
        var div = document.getElementById("leftnav");
        if (div) {
          with (div.style) {
            visibility = "hidden";
          }
          with (document.getElementById("center_col").style) {
            marginLeft = "0px";
            marginRight = "0px";
          }
          with (document.getElementById("foot").style) {
            marginLeft = "0px";
            marginRight = "0px";
          }
        }
})();

[左側メニューなしの(折りたたまれて上部にある)従来の状態]

[このスクリプトで左メニューを隠した状態](右側のスポンサーリンクも消したほうがいいような…)

[スクリプト適用前の左メニューが表示されている状態]

2 Comments

[…] This post was mentioned on Twitter by 星村, カトゆー, ungee3mj, 刈ー, craft and others. craft said: RT @katoyuu1: http://mechsys.tec.u-ryukyu.ac.jp/~oshiro/SiteList/2010/05/06/1715 Googleの左が我慢出来ないのでこれ入れた。 […]

[…] 怒涛のめもめもリンク集 | Googleの左側メニューを消すGreasemonkeyスクリプト (tags: google greasemonkey) […]

Leave a comment

Your comment