Lolo, vou tentar, mas ainda estou intrigado.
#SingleInstance Force
#installKeybdHook
#Persistent
SetTitleMatchMode, 2
#IfWinActive, Word ; #n will only trigger when working inside Word.
#n:: ; [Win]+n trigger key
ClipBoard = ; Clear ClipBoard
Send, +{End} ; [Shift]+[End]
Send, ^c ; Store selected text in ClipBoard
Sleep, 100 ; ClipWait seems unreliable
WinActivate, ahk_class Chrome_WidgetWin_1
Send, ^t ; In my Chrome setup I immediately get a Google search page.
WinWaitActive, Google - Google Chrome ; Wait for Google search Page
Send, %ClipBoard%{Enter} ; Send ClipBoard Text to Google
WinWaitActive, %ClipBoard% ; Wait for window title with search string
Send, {Tab}{Enter}
SoundBeep, 500, 500
Return
#IfWinActive
Adicionado o combo Tab + Enter. Isso NÃO funciona na minha máquina, pois o Tab vai para a barra de menu do Google+ do Google+ ...