◆以下 右クリック検索の別解
1.スクリプトファイルの作成
下記テキストをテキストエディタにコピペして、google.htmlの名前でセーブ。
なお、最初と最後の行頭が全角の「<」になっていますが、
これはどちらも半角に直しておく。

<SCRIPT LANGUAGE="VBScript">
Dim strSelText '選択されている文字列を格納する変数
Dim strOpenUrl '開く URL 文字列を格納する変数

'選択されている文字列を取得

'external.menuArguments が親ウィンドウ(選択されている文字列のあるウィンドウ)
strSelText = external.menuArguments.document.selection.createRange().text

'文字列を検索用に調整
strSelText = Trim(strSelText) '文字列前後の空白文字を削除
strSelText = Replace(strSelText, vbTab, "+") 'タブレーションを"+"に変換
strSelText = Replace(strSelText, " ", "+") '半角スペースを"+"に変換
strSelText = Replace(strSelText, " ", "+") '全角スペースを"+"に変換
strOpenUrl = "http://www.google.co.jp/search?q=";& strSelText

'検索結果を新しいウィンドウで開く (openで開くとIE固定になる)
'open strOpenUrl, "_blank" '↓に変更

'検索結果を外部コマンドを使って新しいウィンドウで開く (既定のブラウザ)
Set objShell = CreateObject("WScript.Shell")
objShell.Run "CMD /C START "& strOpenUrl, 0, false
</SCRIPT>

作成したgoogle.htmlは、Live2chのインストールフォルダ(例えば64bit版のWin8.1の場合、C:\Program Files (x86)\Live2ch\)にコピーする。