1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!x:: { if (WinActive("ahk_exe chrome.exe") != 0) { Send "!+e" ; Chrome拡張 } for this_id in WinGetList("ahk_exe chrome.exe") { If (WinExist(this_id) != 0 && WinGetMinMax(this_id) = 0) { WinClose(this_id) } } } |