Home » Questions » Computers [ Ask a new question ]

How to create a new Chrome window on Mac OS X using applescript or a shell script?

How to create a new Chrome window on Mac OS X using applescript or a shell script?

I would like to be able to open a new Chrome window from LaunchBar, which means I have to express the action as an AppleScript or as a shell script / executable program. I tried automator, but it doesn't really work.

Asked by: Guest | Views: 395
Total answers/comments: 2
bert [Entry]

"tell application ""/Applications/Google Chrome.app""
make new window
activate
end tell"
bert [Entry]

"tell application ""Google Chrome""
make new window
open location ""your url""
end tell

this is what I have done to open facebook messenger to create a small application in a way for fb messenger"