先看截图:
chrome
edge
目前最新版本的chrome和edge都提供了一个标签管理功能,默认快捷键是ctrl shift A , 但是这个按键真的比较难按,比较考验手指! 我写了一个简单的ahk来把这个快捷键改成了 alt , 一键启动! very cool!
; when in chrome / edge , press alt = ctrl + shift + A
#IfWinActive ahk_class Chrome_WidgetWin_1 ; Check if Chrome is active
alt::
Send, ^+a
return
#IfWinActive ahk_class Edge_WidgetWin_1 ; Check if Edge is active
alt::
Send, ^+a
return