下面是我的 Autohotkey 脚本,它通过检测窗口标题中的服务名称,自动复制我在 ChatGPT、Gemini 和 Claude 网站上提出的任何问题的文本(我已将它们安装为 Chrome 应用)。我的脚本如下所示:
Enter::
WinGetTitle, currentWindowTitle, A ; Get the title of the active window
if (InStr(currentWindowTitle, "ChatGPT")) {
Send, ^a
Sleep, 100
Send, ^c
Sleep, 100
Send, {Enter}
} else if (InStr(currentWindowTitle, "Gemini")) {
Send, ^a
Sleep, 100
Send, ^c
Sleep, 100
Send, {Enter}
} else if (InStr(currentWindowTitle, "Claude")) {
Send, ^a
Sleep, 100
Send, ^c
Sleep, 100
Send, {Enter}
}
else
send, {Enter}
return
我曾尝试过 Karabiner-Elements,但没有成功。