구글 크롬은 오픈 하는 mac os appllescript
on run {input, parameters}
set chatGPT_URL to "https://chat.openai.com"
tell application "Google Chrome"
activate
if not (exists window 1) then reopen
set newTab to make new tab at end of tabs of window 1 with properties {URL:chatGPT_URL}
set active tab index of window 1 to (count tabs of window 1)
end tell
end run
댓글