>>369
google.reg ↓

REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt]
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\選択範囲をgoogle検索(&S)]
@="C:/Program Files (x86)/Internet Explorer/google.html"
"Contexts"=dword:00000010


google.htm ↓

<SCRIPT LANGUAGE="VBScript">
Dim strSelText '選択されている文字列を格納する変数
Dim strOpenUrl '開く URL 文字列を格納する変数
'選択されている文字列を取得
'external.menuArguments が親ウィンドウ(選択されている文字列のあるウィンドウ)
strSelText = external.menuArguments.document.selection.createRange().text
strOpenUrl = "http://www.google.co.jp/search?q=";& strSelText
'検索結果を新しいウィンドウで開く
open strOpenUrl, "_blank"
</SCRIPT>

全角<を半角に変更