我更喜欢使用键盘而不是鼠标,但我还没有找到一个好的方法来打开 Google 搜索结果,而不用多次按下 Tab 键,因为这会花费很长时间。
是否有任何键盘快捷键可以打开 Chrome 中的第一个、第二个、第三个等搜索结果?如果没有,是否可以编写一些程序,例如使用 AutoHotkey,以便使用热键打开搜索结果。
答案1
#NoEnv ; Recommended for performance and compatibility with future
AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Gui, -Theme +AlwaysOnTop +LastFound +ToolWindow
Gui, Color, 0D0D0D
Gui, Add, Edit, x10 y10 w200 h20 vSM,
Gui, Add, Button, x10 y45 w60 h20 gChrome, Chrome
Gui, Add, Button, x+10 y45 w60 h20 gDuck, Duck
Gui, Add, Button, x+10 y45 w60 h20 gYouTube, YouTube
Gui, Show, xCenter yCenter w220 h100 , SearcMini
Return
Chrome:
GuiControlGet, SM
Run, https://www.google.com/search?q=%SM%
Return
Duck:
GuiControlGet, SM
Run, https://duckduckgo.com/?q=%SM%&ia=web=
Return
YouTube:
GuiControlGet, SM
Run, https://www.youtube.com/results?search_query=%SM%
Return
GuiClose:
ExitApp
Return