Skip to content

Instantly share code, notes, and snippets.

@kimchaily
Created April 16, 2015 15:46
Show Gist options
  • Save kimchaily/5e39f9ef2d5040a60c43 to your computer and use it in GitHub Desktop.
Save kimchaily/5e39f9ef2d5040a60c43 to your computer and use it in GitHub Desktop.
Alfred workflow. Open a new window in Chrome and if URL given, then go to that URL
on alfred_script(q)
if not (q starts with "http://")
set q to "http://" & q
end if
tell application "/Applications/Google Chrome.app"
make new window
set URL of active tab of window 1 to q
end tell
end alfred_script
@SRL20
Copy link

SRL20 commented Jun 20, 2018

I've been using this for a long time, it's super helpful!

I'm trying to adjust it for use with Safari 11.1, but having trouble. All URLs keep opening in the same window. Aiming to have different windows for specific sets of URLs. Any ideas on how to swap Chrome for Safari?

@jame-zhang
Copy link

jame-zhang commented Dec 6, 2018

thanks for sharing
modified: open url in new tab if chrome is running otherwise in new window, link

Copy link

ghost commented Feb 22, 2019

And it still works!

@Rogersjk
Copy link

Great, it's very useful! 😃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment