我是 MacOS 新手,想复制一些我在 Windows 上使用 Autohotkey 已经做过的事情

我是 MacOS 新手,想复制一些我在 Windows 上使用 Autohotkey 已经做过的事情

下面是我的 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,但没有成功。

相关内容