I don't like holding down 2 keys when doing hotkeys. So I wrote this little ahk script to do middle mouse click opens link in new tab in foreground:
The #IfWinActive line limits the hotkey's use to when Chrome is the active window.Code:SendMode Input #IfWinActive, ahk_class Chrome_WidgetWin_0 ^LButton:: Send, ^+{LButton} Return
Works well for me. You can also use it with Speed-dial to open a dial in a new tab instead of replacing the SD page.
edit: for those not familiar with ahk hotkey apps, you leave it run in system tray to make the hotkey active. Quit the program to get rid of the hotkey.
If you download AutoHotKey package you can also wrap it in the interpreter as a self-contained exe file and run it like any .exe.
edit2: I forgot middle mouse button is also used to drag scroll. I changed the hotkey line in the script to
^LButton so that at least you only have to hold down Control when left clicking a link to open in new tab
in foreground.![]()


LinkBack URL
About LinkBacks




Reply With Quote